@extends('layouts.app') @section('content')

Maestros

Agregar maestro @if(session('notificacion')) @endif
@foreach($maestros as $maestro) @endforeach
ID Nombre Apellidos CI Fecha de nacimiento Teléfono Dirección Correo Especialidad Estado Acciones
{{ $maestro->id }} {{ $maestro->nombre }} {{ $maestro->apellidos }} {{ $maestro->CI }} {{ date('d/m/Y', strtotime($maestro->fecha)) }} {{ $maestro->tel }} {{ $maestro->direccion }} {{ $maestro->correo }} {{ $maestro->especialidad }} @if($maestro->estado) Activo @else Inactivo @endif
Editar
@csrf @method('DELETE')
@endsection