@extends('app') @section('title', 'Parametre') @section('link') @endsection @section('content')
@include('partials._alert')
Gestion Tarifs
Back
@php $i = 1 @endphp @foreach ($tarifs as $item) @endforeach
Libelle Montant Etat Statut Actions
{{ $i <= 9 ? '0'.$i++:$i++ }} {{ ucwords($item['libelle']) }} {{ formatMontant($item['montant']).' FR CFA' }} {{ getEtatServie($item['etat']) }} {{ $item['status'] ? 'Actif':'Inactif' }}
@if($item['etat'] == 3) @endif
@endsection @section('script') @endsection