@extends('layouts.app') @section('title', $task->title) @section('content')
← Go back to the task list!

{{ $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