@php
$user = auth()->user();
$canEdit = $user->hasPermission(39);
$canDelete = $user->hasPermission(41);
$canToggle = $user->hasPermission(40);
@endphp
@if($projet->id_statut == 2 || $projet->id_statut == 4 || $projet->id_statut == 5|| $projet->id_statut == 7)
@if($canEdit)
@endif
@if($canToggle)
@endif
@if($canDelete)
@endif
@endif