@extends('plantilla')
@section('content')
| Nombre y Apellido |
Email |
Telefono |
Horario |
|
@foreach ($horarios as $hora)
@foreach ($doctores as $doctor)
@if ($hora->id_doctor == $doctor->id)
| {{ $doctor->name }} |
{{ $doctor->email }} |
@if ( $doctor->telefono != "")
{{ $doctor->telefono }} |
@else
No Disponible |
@endif
{{ $hora->horaInicio }} - {{ $hora->horaFin }} |
|
@endif
@endforeach
@endforeach
@endsection