@extends('layouts.master') @section('browserTitle', 'Clinicians') @section('breadcrumb') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='admin') @elseif($_SESSION['role']=='clinician') @endif @endif @endsection @section('title') {{ trans('menu.showClinicians') }} @endsection @section('body') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='admin')

{{ trans('menu.addClinician') }}

@endif @endif
@foreach($clinicians_list as $clinician) @endforeach
{{ trans('other.firstname') }} {{ trans('other.lastname') }} {{ trans('other.title') }}
{{ $clinician->user->firstname }} {{ $clinician->user->lastname }} {{ $clinician->title }}
{{ trans('btn.details') }} @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='admin') {{ trans('btn.edit') }} @if(count($clinician->patients)==0) {{ trans('btn.delete') }} @else {{ trans('btn.delete') }} @endif @endif @endif
@endsection