{{ __('Payment Information') }}
@php
if ($appointment->payment_status == 'pending') {
$payment_bg = 'bg-warning';
} elseif ($appointment->payment_status = 'completed') {
$payment_bg = 'bg-success';
} elseif ($appointment->payment_status = 'rejected') {
$payment_bg = 'bg-danger';
}
$symbol = $appointment->currency_symbol;
$position = $appointment->currency_symbol_position;
@endphp
-
{{ __('Paid Amount') . ':' }}
{{ $position == 'left' ? $symbol : '' }}{{ number_format($appointment->customer_paid, 2, '.', ',') }}{{ $position == 'right' ? $symbol : '' }}
-
{{ __('Payment Method') . ':' }}
{{ __($appointment->payment_method) }}
-
{{ __('Payment Status') . ':' }}
{{ __($appointment->payment_status) }}
-
@php
if ($appointment->order_status == 'pending') {
$order_bg = 'bg-warning';
} elseif ($appointment->order_status = 'accepted') {
$order_bg = 'bg-success';
} elseif ($appointment->order_status = 'rejected') {
$order_bg = 'bg-danger';
}
@endphp
{{ __('Booking Status') . ':' }}
{{ __($appointment->order_status) }}