@extends('layouts.master') @section('title', 'Tableau de bord') @section('content')

@yield('title')

Total Camion

{{ $camions->count() }}

PEC Terminée

{{ $pec->count() }}

PEC En Cour

{{ $pecencour->count() }}

Demande en cour

{{ $demandeencour->count() }}

Alertes vidanges

Dernière Prise en charge

    @foreach ($pecs as $item)
  • {{ \Carbon\Carbon::parse($item->date_entre)->format("j/n/Y") }}
    {{ $item->camion_name }}
    {{ $item->reparation }}.
  • @endforeach
@endsection