@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
Planteles
Crear plantel
{{-- @livewire('counter') --}} @forelse ($plantels as $plantel) @empty

Sin planteles.

@endforelse
Id Nombre razon status opciones
{{$plantel->id}} {{$plantel->name}} {{$plantel->razon}} {{ $plantel->status==1 ? 'Activo' : 'Inactivo' }} @can('plantel.edit') @endcan @can('plantel.destroy')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection