@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Academico @endslot @slot('title') Pabellones @endslot @endcomponent
@foreach ($pabellones as $pabellon) @endforeach
ID Nombre Descripción Acciones
{{ $pabellon->id }} {{ $pabellon->nombre }} {{ $pabellon->descripcion ?? '-' }}
@endsection @section('script') @endsection