@extends("template") @section('title') @if (isset($title)) {{$title}} @endif @endsection('title') @section('content')
{{$Doctor->name}}
Name: {{$Doctor->name}}
eMail: {{$Doctor->email}}
Phone: {{$Doctor->phone}}
Address: {{$Doctor->address}}
Status: {{$Doctor->status}}
Pesel: {{$Doctor->pesel}}
Type: {{$Doctor->type}}
Specyfikacja:
    @foreach ($Doctor->specializations as $spec)
  • {{$spec->name}}
  • @endforeach
@endsection('content')