@extends('layouts.bubofamily') @section('content_header')

Lista dei Movimenti

@endsection @section('content')
Lista movimenti
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
 
@foreach( $movimenti as $movimento ) @endforeach
Data Categoria Conto Descrizione Importo Dare Importo Avere Azione
{{ $movimento->mov_data}} {{ $movimento->cat_name }} {{ $movimento->nomeConto }} {{ $movimento->mov_descrizione }} € {{ $movimento->mov_importo_dare }} € {{ $movimento->mov_importo_avere }}       ( {{ $movimento->quanti ?? '' }} )
@endsection @section('js') @endsection