@extends('layouts.dashboard') @section('content') @php use Carbon\Carbon; $states = [ 'pending' => 'Nouveau', 'working' => 'En cours', 'canceled' => 'Refusés', 'success' => 'Terminés', 'trash' => 'Corbeille' ]; $colors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'working' => 'bg-blue-100 text-blue-800', 'canceled' => 'bg-red-100 text-red-800', 'success' => 'bg-green-100 text-green-800', 'trash' => 'bg-gray-200 text-gray-600' ]; @endphp @push('head') @endpush