Add task
@forelse($todos as $todo)
@empty
@endforelse
{{ $todo->title }}
{{ ucfirst($todo->priority) }}
@if($todo->due_date)
{{ $todo->due_date->format('M j, Y') }}
@endif
@if($todo->description)
{{ $todo->description }}
@endif