@extends('layouts.app') @section('breadcrumbs') @include('_includes.breadcrumbs', [ 'data' => [ ['route' => route('home'), 'name' => 'Inicio'], ['route' => '', 'name' => 'Reportes'], ['route' => '', 'name' => 'Conciliacion Bancaria'] ], 'show_add_button' => false ]) @endsection @section('content')
@if(!$movimientos->isEmpty())
@foreach($movimientos as $movimiento) @if($movimiento->etiqueta == "pago-impuesto") @foreach($movimiento->pagos as $pago) @endforeach @endif @if($movimiento->etiqueta == "pago-comparendo") @foreach($movimiento->obtenerComparendosObj() as $comparendo) @endforeach @endif @if($movimiento->etiqueta == "pago-tramite") @foreach($movimiento->pagos as $pago) @endforeach @endif @endforeach
Fecha Tipo Año Comparendo Placa Recaudo
{{ $movimiento->created_at->format('Y-m-d') }}
{{ $movimiento->created_at->format('H:i') }}
Derecho {{ $pago->ano }} - {{ strtoupper($pago->vehiculo->placa) }} ${{ number_format($movimiento->valor, 0, '.', '.') }}
{{ $movimiento->created_at->format('Y-m-d') }}
{{ $movimiento->created_at->format('H:i') }}
Comparendo - {{ $comparendo->numero_corto }} {{ $comparendo->vehiculo_placa }} ${{ number_format($movimiento->valor, 0, '.', '.') }}
{{ $movimiento->created_at->format('Y-m-d') }}
{{ $movimiento->created_at->format('H:i') }}
Derecho {{ $pago->ano }} - {{ strtoupper($pago->vehiculo->placa) }} ${{ number_format($movimiento->valor, 0, '.', '.') }}
  ${{ number_format($totalMovimientos, 0, '.', '.') }}  
Dir. {{ mb_strtoupper(Auth::user()->organismo->direccion) }}
Tel. {{ mb_strtoupper(Auth::user()->organismo->telefonos) }}
{{ mb_strtoupper(Auth::user()->organismo->sitio_web) }}
{{ mb_strtoupper(Auth::user()->organismo->email) }}

Reporte generado 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 este rango de fechas.
@endif @endif
@endsection