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

Canchas

@stop @section('content')
Nueva Cancha
@if(session('success')) @endif
@forelse($canchas as $cancha) @empty @endforelse
# Nombre Descripción Estado Acciones
{{ $cancha->id }} {{ $cancha->nombre }} {{ $cancha->descripcion ?? '-' }} @if($cancha->activa) Activa @else Inactiva @endif
@csrf @method('DELETE')
@csrf @method('DELETE')
No hay canchas registradas
@stop @section('js') @stop