@extends('layouts.app') @section('title-head','All-Articles') @section('title', $task->title) @section('content')
Go Back

{{ $task->title}}

{{ $task->description }}

@if($task->long_description)

{{ $task->long_description }}

@endif

Created {{ $task->created_at->diffForHumans() }}

Updated {{ $task->updated_at->diffForHumans() }}

@if ($task->completed)

Completed

@else

Not completed

@endif

Edit
@csrf @method('PUT')
@csrf @method('DELETE')
@endsection