Driver command center

{{ $activeProfile?->name ? $activeProfile->name . ' · Dashboard' : 'Set up your first business profile' }}

Keep TLC vehicles, tickets, and compliance in one workspace. Switch between business profiles without leaving the flow.

@php $statCards = [ ['label' => 'Business profiles', 'value' => $stats['business_profiles'], 'icon' => 'bi-diagram-3', 'help' => 'Multi-LLC tenants you manage'], ['label' => 'Vehicles on file', 'value' => $stats['vehicles'], 'icon' => 'bi-truck', 'help' => 'Synced with DMV/VIN data'], ['label' => 'Open tickets', 'value' => $stats['tickets'], 'icon' => 'bi-exclamation-octagon', 'help' => 'Pulled from NYC TLC feeds'], ['label' => 'Bookkeeping entries', 'value' => $stats['bookkeeping_entries'], 'icon' => 'bi-cash-coin', 'help' => 'Fuel, leases, insurance, tolls'], ]; @endphp @foreach ($statCards as $card)

{{ $card['label'] }}

{{ $card['value'] }}

{{ $card['help'] }}

@endforeach

Fleet radar

Recent vehicles

Manage fleet
@if ($recentVehicles->isEmpty())
No vehicles yet

Connect your first TLC vehicle

Once you add VIN, plate, and medallion data, real-time ticket sync and compliance monitors unlock here.

Add vehicle
@else
@foreach ($recentVehicles as $vehicle) @endforeach
Vehicle Plate VIN Logged
{{ $vehicle->year }} {{ $vehicle->make }} {{ $vehicle->model }} {{ $vehicle->license_plate }} {{ \Illuminate\Support\Str::upper(\Illuminate\Support\Str::limit($vehicle->vin, 8, '…')) }} {{ $vehicle->created_at->diffForHumans() }}
@endif

Phase 1 trackers

Compliance runway

@php $milestones = [ ['title' => 'Sync TLC ticket feeds', 'status' => 'up next', 'detail' => 'Connect to NYC data sources and queue daily imports.'], ['title' => 'Vehicle policy coverage', 'status' => 'in progress', 'detail' => 'Lock down per-tenant authorizations before exposing fleet tools.'], ['title' => 'Bookkeeping beta', 'status' => 'queued', 'detail' => 'Fuel, lease, toll ledger with exports to QuickBooks.'], ]; @endphp
    @foreach ($milestones as $milestone)
  • {{ $milestone['title'] }}
    {{ $milestone['status'] }}

    {{ $milestone['detail'] }}

  • @endforeach