@extends('app') @section('title', 'Gestion des appels') @section('link') @endsection @section('content')
@include('includes._alert')

Transport

@foreach ($data as $item)
@php $i = 1; @endphp @foreach ($item['data'] as $val) @endforeach
Libelle Lieux Montant Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{ucwords($val->libelle)}} {{ucwords($val->zone)}} {{formatMontant($val->montant)}} FR CFA
@endforeach
@endsection @section('script') @endsection