@extends('layouts.app')
@section('content')
REPORTE DE ENTRADAS
Fecha |
Valor |
Descripcion |
@foreach ($data as $dt)
{{$dt->fecha}} |
Q. {{number_format($dt->valor, 2)}} |
{{$dt->descripcion}} |
@endforeach
Total: Q. {{number_format($total, 2)}}
@endsection
@section('scripts')
@endsection