@extends('layouts.base') @section('title') Comptabilité - {{ $agency->name }} @endsection @section('style') @endsection @section('content')
{{-- @include('includes.alert.alert_success_error') --}}
Export vers la Comptabilité - {{ $agency->name }}
0 opération(s) sélectionnée(s)
@if($operations->count() > 0) @foreach($operations as $operation) @endforeach @else @endif
Date Opération Type Montant Identifiant Ajouté par Statut Export Actions
is_exported_to_comptability ? 'disabled' : '' }}> {{ $operation->operation_date ? $operation->operation_date->format('d/m/Y H:i') : 'N/A' }} @if($operation->type === 'entree') Entrée @else Sortie @endif {{ number_format($operation->amount, 0, ',', ' ') }} F {{ $operation->uuid ?? 'N/A' }} {{ $operation->user ? $operation->user->first_name . ' ' . $operation->user->last_name : 'N/A' }} @if($operation->is_exported_to_comptability) Exportée @else En attente @endif @include('gestion_operation_caisse.partials.action_buttons', [ 'operation' => $operation, 'onlyView' => true ])
Aucune donnée disponible Aucune opération trouvée pour les critères sélectionnés
@include('gestion_operation_caisse.partials.operation_details_modal', ['title' => "Détails de l'opération"]) @endsection @section('script') @include('gestion_operation_caisse.partials.operation_details_modal', ['title' => "Détails de l'opération"]) @include('gestion_operation_caisse.partials.operation_details_modal_script') @endsection