@extends('layouts.app') @section('breadreportecrumbs') @include('__partials.breadcrumbs', [ 'data' => [ ['route' => 'home', 'name' => 'Home'], ['route' => '', 'name' => 'Dias No Habiles'] ], 'show_add_button' => false, 'add_button_route' => route('dias.crear') ]) @endsection @section('content')
@if($formato->isEmpty())
No se encontraron Formatos.
@else
@foreach($formato as $item) @endforeach
ID Nombre  
{{ $item->id }} {{ $item->nombre }} Editar


@endif
@endsection