@extends('welcome') @section('content')
Aucune mission enregistrée pour cet artisan.
| Date | Client | Commentaire | Note client | État |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($res->dater)->format('d/m/Y H:i') }} | @if($res->client) {{ $res->client->prenom }} {{ $res->client->nom }} @else Client supprimé @endif | {{ !empty($res->commentaire) ? Str::limit($res->commentaire, 40) : 'Aucun commentaire' }} | @if($res->note > 0) {{ $res->note }} @else Non noté @endif | @if($res->etat == 'terminé' || $res->validation == 1) Validée @elseif($res->etat == 'annulé') Annulée @else En cours @endif |