@foreach($listDemande as $data)

{{ \Illuminate\Support\Str::limit($data->titre, 80) }}

{{ $data->date_sm }}
@php $text = ""; $color = ""; if(is_null($data->stat) || $data->stat === "PENDING"){ $text = "En attente"; $color = "badge-default"; }else if($data->stat === "ALLOWED"){ $text = "Acceptée"; $color = "badge-success"; }else if($data->stat === "REJECTED"){ $text = "Refusée"; $color = "badge-danger"; }else if($data->stat === "EXPIRED"){ $text = "Refusée"; $color = "badge-warning"; }else{ $text = ""; $color = ""; } @endphp
{{ $text }}
@endforeach