@extends('base') @section('content')
| 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 |
|