@extends('layouts.landing') @section('head') @include('layouts._partials.tablaStyle') @endsection @section('title',"Inicio") @section('content')
docente
@can('docente.create') Crear docente @endcan
@forelse ($docentes as $docente) @php $usr = $docente->docentes->first() @endphp @empty

Sin docentes.

@endforelse
Id Nombre Campus Rol Correo Opciones
{{ $docente->id }} {{ $usr?->name }} {{ $usr?->apellidoPaterno }} @foreach($usr?->plantelUsuarios ?? [] as $plantel) {{ $plantel->name }} @endforeach @foreach($usr?->roles ?? [] as $rol) {{ $rol->name }} @endforeach {{ $usr?->email }} @can('docente.destroy') @endcan @can('docente.destroy')
@csrf @method('DELETE')
@endcan
@endsection @section('scripts') @include('layouts._partials.tablaScript') @include('layouts._partials.delete') @endsection