@extends('layouts.admin') @section('title', 'Project Tasks') @section('content') @include('projects._tabs', ['project' => $project, 'active' => 'tasks'])
@forelse ($tasks as $t) @empty @endforelse
ID Title Description Status Engineer Site Supervisor
#{{ $t->id }} {{ $t->title }} {{ $t->description ?? '-' }} {{ $t->status?->label() ?? $t->status }} {{ $t->engineer?->name ?? '-' }} {{ $t->siteSupervisor?->name ?? '-' }}
No tasks found for this project.
{{ $tasks->links() }}
@endsection