@extends('layouts.app')
@section('breadcrumbs')
@include('_includes.breadcrumbs', [
'data' => [
['route' => route('home'), 'name' => 'Inicio'],
['route' => '', 'name' => 'Reportes'],
['route' => '', 'name' => 'Egresos Bancarios']
],
'show_add_button' => false
])
@endsection
@section('content')
@if(!$movimientos->isEmpty())
@endif
@if(!$movimientos->isEmpty())
Fecha |
Cuenta |
Concepto |
Valor |
@foreach($movimientos as $movimiento)
{{ $movimiento->created_at->toDateTimeString() }} |
{{ $movimiento->cuenta->banco->nombre }} {{ ucfirst($movimiento->cuenta->tipo) }} No. {{ $movimiento->cuenta->numero }} |
{{ $movimiento->concepto }} |
- ${{ number_format($movimiento->valor * -1, 0, '.', '.') }} |
@endforeach
Total |
- ${{ number_format($totalMovimientos * -1, 0, '.', '.') }} |
|
Carrera 46 No. 57-39. Arjona - Bolívar.
Teléfonos: 6564412 - 6564413 - 6564414.
tramites@ettbolivar.com
|
|
|
Reporte genenerado por {{ Auth::user()->name }}
el {{ \Carbon\Carbon::now()->format('Y-m-d') }} a las {{ \Carbon\Carbon::now()->format('H:i') }}
@else
@if(Input::has('fecha_inicial'))
No se encontraron registros para los filtros seleccionados.
@endif
@endif
@endsection