@extends('admin.layout') @section('content')

Tasks for Project: {{ $project->project_type }}

Tasks

@forelse($tasks as $key => $task) @empty @endforelse
# Name Status Start Date End Date Assigned To Action
{{ $key + 1 }}
{{ $task->title }}
{{ $task->task_id }}
New {{ $task->start_date ?? '-' }} {{ $task->end_date ?? '-' }} {{ $task->assigned_to?? 'Unassigned' }} View
No tasks found for this project.
@endsection