@extends('layouts.app') @section('title', 'Dashboard') @section('breadcrumb')Dashboard@endsection @section('content') @php $userRole = $userRole ?? auth()->user()->role?->name ?? 'staff'; @endphp {{-- ═══════════════════ TRADES DASHBOARD ═══════════════════ --}} @if($userRole === 'trades')
Welcome back, {{ auth()->user()->name }}. Here's your work summary.
No active jobs assigned to you.
No upcoming events
@endforelseWelcome back, {{ auth()->user()->name }}. Here's what's happening today.
Welcome back, {{ auth()->user()->name }}. Here's what's happening today.
| Job | Client | Stage | Value |
|---|---|---|---|
|
{{ $job->job_number }}
{{ $job->project_type ? ucfirst($job->project_type) : 'Kitchen' }}
|
{{ $job->contact?->full_name ?? '—' }}
{{ $job->site_suburb }}
|
{{ $job->stageLabel() }} |
@if(auth()->user()->role->id == 2 || auth()->user()->role->id == 10 || auth()->user()->role->id == 3)
${{ number_format($job->job_value ?? 0) }}
@endif
|
| No jobs yet | |||
No upcoming events
@endforelseNo leads yet
@endforelseNo quotes yet
@endforelse