@extends('layouts.admin') @section('title', 'Docentes') @section('content')
Docentes

Gestiona el equipo docente

Nuevo Docente
@include('partials.section-header-editor', ['section' => 'teachers', 'titleDefault' => 'Docentes Comprometidos', 'subtitleDefault' => ''])
@if ($teachers->isEmpty())
No hay docentes
Nuevo Docente
@else @foreach ($teachers as $teacher) @endforeach
Docente Cargo Materia Orden Estado Acciones
@if($teacher->photo) @else
@endif {{ $teacher->name }}
{{ $teacher->position ?: '-' }} {{ $teacher->subject ?: '-' }} {{ $teacher->order }} @if ($teacher->active) Activo @else Inactivo @endif
@csrf @method('DELETE')
@endif
@if($teachers->hasPages()) @endif
@endsection