@extends('layouts.master') @section('title', 'Caisses - Entrés - Liste') @section('content')
@if ($entereds->count() > 0)
@foreach ($entereds as $key => $entered) @endforeach
# Date Montant Motif Personel Actions
{{ $key + 1 }} {{ \Carbon\Carbon::parse($entered->created_at)->format('d/m/Y G:i:s') }} @money($entered->amount, 'XOF') {{ $entered->motif }} {{ $entered->user->fullname }}
@else
Aucune donnée disponible.
@endif
@endsection