@extends('layouts.app') @section('title', 'Activités') @section('content')
| Code & Nom | Groupe | Action | Responsable | Montant | Actif | Ouvert | Actions |
|---|---|---|---|---|---|---|---|
| {{ $a->code }} : {{ $a->nom }} | {{ $a->groupeactivite->nom ?? '-' }} | {{ $a->action->nom ?? '-' }} | {{ $a->structureresponsable->nom ?? '-' }} | {{ $a->montant ? number_format($a->montant, 0, '', ' ') : '-' }} | {{-- Actif --}}@if(in_array($usergroupId, [3,4,6])) @endif @if(in_array($usergroupId, [1,2,5])) {{ $a->actif ? 'Oui' : 'Non' }} @endif | {{-- Ouvert --}}@if(in_array($usergroupId, [3,4,5,6])) @endif @if(in_array($usergroupId, [1,2])) {{ $a->ouvert ? 'Ouvert' : 'Fermé' }} @endif | {{-- Actions --}}@if(!in_array($usergroupId, [3,4,5,6])) @if(!$a->valide) @if(in_array($usergroupId, [1,2])) @endif @endif @endif |