@extends('layouts.master') @section('title', 'With Doctor | Proxima - Medical Management app') @section('title-topbar', 'Patients Waiting') @section('css') @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.appointments') }} | {{ __('basic.patient arrived') }}
@if (count($patients) > 0) @foreach ($patients as $item)

{{ __('basic.patient') }}

{{ $item->patient->name }}

{{ __('basic.code') }} {{ $item->patient->code }}

{{ __('basic.appointment time') }}
{{ date('d M Y h:i a', strtotime($item->start_at)) }}
{{ __('basic.service') }}
@if (count($item->patient->pulses) > 0) @else No Pulses @endif @if (count($item->patient->sessions) > 0) @endif
{{ __('basic.status') }}
@endforeach @else No patients @endif
@endsection @section('js') @endsection