@extends('layouts.app')
@section('breadcrumbs')
@include('_includes.breadcrumbs', [
'data' => [
['route' => route('home'), 'name' => 'Inicio'],
['route' => '', 'name' => 'Reportes'],
['route' => '', 'name' => 'Cartera Morosa']
],
'show_add_button' => false
])
@endsection
@section('content')
@if($items && !$items->isEmpty())
Reporte de Cartera Morosa Derechos de Tránsito
Fecha |
Tipo |
Responsable |
Detalle |
@foreach($items as $item)
{{ $item->created_at->toDateTimeString() }} |
{{ $item->titulo }} |
{{ $item->usuario->name }} |
{{ $item->descripcion }} |
@endforeach
|
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 este rango de fechas.
@endif
@endif
@endsection