{{-- Job Tasks Tab — embedded inside the job detail page Include this partial or use it as a standalone view. Usage in job show page: @include('tasks.job_tasks', ['tasks' => $tasks, 'jobId' => $job->id, 'isAdmin' => $isAdmin]) --}} @php $isAdmin = $isAdmin ?? (auth()->user()->role->name === 'office_admin'); @endphp
{{ $tasks->count() }} task{{ $tasks->count()===1?'':'s' }} linked to this job
No tasks for this job yet.
@if($isAdmin) Create the first task → @endif