@extends('layouts.app') @section('breadcrumbs') @include('_includes.breadcrumbs', [ 'data' => [ ['route' => route('home'), 'name' => 'Inicio'], ['route' => '', 'name' => 'Reportes'], ['route' => '', 'name' => 'Auditoría'] ], 'show_add_button' => false ]) @endsection @section('content')
@if(!$items->isEmpty())
@foreach($items as $item) @endforeach
Fecha Tipo Responsable Detalle
{{ $item->created_at->toDateTimeString() }} {{ $item->titulo }} {{ $item->usuario->name }} {{ $item->descripcion }}
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