@extends('layouts.app') @section('title', $task->title) @section('content')
{{ $task->description }}
@if($task->long_description){{ $task->long_description }}
@endifCreated {{ $task->created_at->diffForHumans() }} • Updated {{ $task->updated_at->diffForHumans() }}
@if($task->completed) Completed @else Not completed @endif
@endsection