@extends('admin.layouts.app') @section('title', $customer->name) @section('page-title', __('admin.menu.customers').' — '.$customer->name) @section('page-actions')
{{ __('admin.actions.edit') }} @endsection @section('content')| {{ __('admin.fields.reference') }} | {{ __('admin.fields.total') }} | {{ __('admin.fields.status') }} | {{ __('admin.fields.created_at') }} |
|---|---|---|---|
| {{ $order->reference }} | {{ number_format((float) $order->total, 2) }} | @include('admin.partials.badge-status', ['label' => __('statuses.order.'.$order->status), 'status' => $order->status]) | {{ $order->created_at->format('Y-m-d') }} |
| {{ __('admin.dashboard.no_records') }} | |||
| {{ __('admin.fields.reference') }} | {{ __('admin.fields.doctor') }} | {{ __('admin.fields.appointment_date') }} | {{ __('admin.fields.status') }} |
|---|---|---|---|
| {{ $appointment->reference }} | {{ $appointment->doctor?->name }} | {{ $appointment->appointment_date?->toDateString() }} | @include('admin.partials.badge-status', ['label' => __('statuses.appointment.'.$appointment->status), 'status' => $appointment->status]) |
| {{ __('admin.dashboard.no_records') }} | |||
| {{ __('admin.fields.reference') }} | {{ __('admin.fields.equipment') }} | {{ __('admin.fields.total') }} | {{ __('admin.fields.status') }} |
|---|---|---|---|
| {{ $booking->reference }} | {{ $booking->equipment?->name }} | {{ number_format((float) $booking->total, 2) }} | @include('admin.partials.badge-status', ['label' => __('statuses.rental.'.$booking->status), 'status' => $booking->status]) |
| {{ __('admin.dashboard.no_records') }} | |||