@php($page = 'projects') {{env('APP_NAME')}} | Project Tasks
@include("components.navbar")
@include("components.sidebar")

Tasks: {{$project->title}}

Back to Project
Add New Task
@csrf
@forelse($tasks as $task) @empty @endforelse
Title Assignee Type Deadline Status Action
{{$task->title}}
{{$task->description}}
{{ str_replace('App\\Models\\', '', $task->assignee_type) ?? 'Unassigned' }} {{ $task->deadline ?? 'N/A' }} {{$task->status}}
@csrf @method('PATCH')
No tasks found.
{{$tasks->links()}}
@include("components.footer")