@extends('layouts.public') @section('title', 'Docentes') @section('content') @include('partials.page-header', ['title' => $settings?->teachers_title ?: 'Nuestros Docentes'])
Equipo

Equipo Docente

Profesionales comprometidos con la educacion y el desarrollo integral de cada estudiante.

@forelse($teachers as $teacher)
{{ $teacher->name }}
{{ $teacher->name }}
{{ $teacher->position ?: '' }}
@if($teacher->subject)
{{ $teacher->subject }}
@endif @if($teacher->email) {{ $teacher->email }} @endif
@empty
No hay docentes registrados.
@endforelse
@endsection