@extends('layouts.app') @section('styles') @endsection @section('content')
@include('app.operations.counter')
@include('app.operations.menu_tab')
@foreach(week_transactions() as $wt) @endforeach
Caisse Caissier Montant Méthode Dossier Statut Date
{{$wt->caisse->number}} {{substr($wt->caisse->user->first_name, 0, 1)}} {{$wt->caisse->user->last_name}} {{formatpriceth($wt->amount, getCurrency())}} {{$wt->paymentMethod->name}} @if($wt->analysis) {{$wt->analysis->matricule}} @else Introuvable @endif @if($wt->status === "paid") Payé @else Impayé @endif {{$wt->created_at->format('d/m/Y H:i:s')}}
@endsection @section('scripts') @include('layouts.plugins.scripts.datatable') @endsection