@extends('admin.admin_dashboard') @section('admin')
Home Todo List
Add task
@csrf
@forelse($todos as $todo)
@csrf @method('PATCH')
{{ $todo->title }} {{ ucfirst($todo->priority) }} @if($todo->due_date) {{ $todo->due_date->format('M j, Y') }} @endif
@if($todo->description)

{{ $todo->description }}

@endif
@csrf @method('DELETE')
@empty @endforelse
@endsection