@extends('layouts.app') @section('title', 'Motoristas') @section('page_title', 'Gestão de Motoristas') @section('content')
| Ações | |||||||
|---|---|---|---|---|---|---|---|
| @if($motorista->ranking_posicao) #{{ $motorista->ranking_posicao }} @else — @endif | {{ $motorista->nome }} | {{ $motorista->cpf ?? '—' }} | {{ $motorista->cargo ?? '—' }} | {{ $motorista->grupo ?? '—' }} | @if($motorista->cnh_validade) @php $vencida = $motorista->cnh_validade->isPast(); @endphp {{ $motorista->cnh_validade->format('d/m/Y') }} @if($vencida) ⚠@endif @else — @endif | @php $sc = match($motorista->status) { 'Ativo' => 'green', 'Férias' => 'blue', 'Afastado' => 'yellow', default => 'red' }; @endphp {{ $motorista->status }} | |
| Nenhum motorista encontrado. | |||||||