@extends('layouts.exat') @section('title', 'Circuits de validation') @section('subtitle', $circuits->count().' circuit(s)') @section('actions') Nouveau circuit @endsection @section('content')
@forelse($circuits as $c) @empty @endforelse
Libellé Plage de montant Étapes Statut
{{ $c->libelle }}
@if($c->description)
{{ $c->description }}
@endif
@if($c->montant_min || $c->montant_max) {{ $c->montant_min ? number_format((float)$c->montant_min,0,',',' ') : '0' }} – {{ $c->montant_max ? number_format((float)$c->montant_max,0,',',' ') : '∞' }} FCFA @else Tous montants @endif {{ $c->etapes_count }} @if($c->actif) Actif @else Inactif @endif Configurer
Aucun circuit. Créez-en un.
@endsection