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

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

@endif @endif
@foreach($patients_list as $patient) @endforeach
{{ trans('other.firstname') }} {{ trans('other.lastname') }}
{{ $patient->user->firstname }} {{ $patient->user->lastname }}
{{ trans('btn.details') }} @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('btn.edit') }} {{ trans('btn.editPw') }} {{ trans('btn.delete') }} @endif @endif
@endsection