@extends('layouts.portal') @section('title', __('onsite.title') . ' — ' . config('app.name')) @section('page_title', __('onsite.title')) @section('page_subtitle', number_format($consultations->total()) . ' · ' . __('onsite.title')) @section('page_actions') {{ __('onsite.add') }} @endsection @section('content')
| {{ __('onsite.patient_name') }} | {{ __('onsite.id_iqama_number') }} | {{ __('onsite.gender') }} | {{ __('onsite.age_years') }} | {{ __('onsite.weight_kg') }} | {{ __('onsite.height_cm') }} | {{ __('onsite.activity_level') }} | {{ __('onsite.tdee') }} | {{ __('onsite.ibw_devine') }} | {{ __('onsite.added_date') }} | {{ __('onsite.status') }} | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $row->patient_name ?? '—' }} | {{ $row->id_number ?? '—' }} | {{ $row->gender_label }} | {{ $row->age }} | {{ $row->weight }} {{ __('common.kg') }} | {{ $row->height }} {{ __('common.cm') }} | {{ $row->activity_label }} | {{ $row->tdee ? number_format($row->tdee, 0) . ' ' . __('common.kcal') : '—' }} | {{ $row->ibw_devine ? number_format($row->ibw_devine, 1) . ' ' . __('common.kg') : '—' }} | {{ $row->created_at->format('Y-m-d') }} | @if ($row->isDraft()) {{ __('onsite.draft') }} @else {{ __('onsite.completed') }} @endif | @if ($row->isDraft()) {{ __('onsite.resume') }} @else {{ __('appointments.view') }} @endif |
| {{ __('onsite.no_data') }} | |||||||||||