@extends('base') @section('content')

Listado General Profesores

@foreach ($teachers as $teacher) @endforeach
Código Nombre Completo Apellidos Teléfono Cárgo Activo Acciones
{{ $teacher->id }} {{ $teacher->name }} {{ $teacher->last_name }} {{ $teacher->telephone }} {{ $teacher->position }} @if( $teacher->status === 1) Activo @endif @if( $teacher->status === 0) Inactivo @endif
@csrf @method('POST')
@endsection