Entrate/Uscite gestionale

@if($total_in > 0 || $total_out > 0)

Totale mese entrate/uscite : {{formatPrice($total_in - $total_out)}}

@endif

Entrate

@foreach($records_in as $record) @endforeach
Data Cliente Causale Importo
{{date("d/m/Y", strtotime($record->date))}} @if($record->member) {{$record->member->first_name}} {{$record->member->last_name}} @endif {{$this->getCausal($record->causal_id)}} {{formatPrice($record->amount)}}
Totale {{formatPrice($total_in)}}

Uscite

@foreach($records_out as $record) @endforeach
Data Fornitore Causale Importo
{{date("d/m/Y", strtotime($record->date))}} @if($record->supplier) {{$record->supplier->name}} @endif {{$this->getCausal($record->causal_id)}} {{formatPrice($record->amount)}}
Totale {{formatPrice($total_out)}}
@push('scripts') @endpush @push('scripts') @endpush