@extends('adminlte::page') @section('title', 'Reportes') @section('content_header')

Reportes

Selecciona el reporte que necesitas generar

@stop @section('content')
@foreach($categorias as $categoria => $datos)

{!! $datos['titulo'] !!}

{{ $datos['descripcion'] }}

@foreach($datos['reportes'] as $reporte) @can($reporte['permiso'])
{{ $reporte['nombre'] }}
{{ $reporte['descripcion'] }}
@endcan @endforeach
@endforeach
@stop