@extends('website.layouts.globalLayout') @section('content')
User Image

{{$doctor->first_name}} {{$doctor->last_name}}

{{$doctor->speciality ?? "spécialité non renseigné"}}

(35)

{{$doctor->town}}, {{$doctor->country}} - Voir sur la carte

@foreach ($skills->where('doctor_id', $doctor->id) as $skill) {{$skill->skill}} @endforeach
@php $planning = plannings()->where('doctor_id', $doctor->id); @endphp
Disponibilité
Disponible
Lundi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Mardi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Mercredi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Jeudi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Vendredi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Samedi
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif
Dimanche
@if ($planning->where('day', "monday")->first()) {{$planning->where('day', "monday")->first()->start}} - {{$planning->where('day', "monday")->first()->start}} @else -- @endif

Présentation

{{$doctor->about ?? ""}}

Expertises

    @foreach($skills as $skill)
  • {{$skill->name}}
  • @endforeach

Diplômes

    @foreach(certificates()->where('doctor_id', $doctor->id) as $certificat)
  • {{$certificat->name}}
  • @endforeach
{{-- @foreach($doctor->hospitals as $hospital)

{{$hospital->name}}

{{$hospital->role}}

{{$hospital->address}} , {{$hospital->town}}, {{$hospital->country}}

Voir sur la carte
@endforeach--}}
{{--
  • User Image

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation. Curabitur non nulla sit amet nisl tempus

    • User Image

      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam. Curabitur non nulla sit amet nisl tempus

--}}

Laisser un avis ou commentaire pour Dr {{$doctor->first_name}} {{$doctor->last_name}}

250 charactères maximums

@include('website.includes.part.footer') @endsection