| {{ __('Name') }} | {{ $order?->user?->name }} |
| {{ __('Email') }} | {{ $order?->user?->email }} |
| {{ __('Phone') }} | {{ $order?->user?->details?->phone }} |
| {{ __('Age') }} | {{ $order?->user?->details?->age }} |
| {{ __('Gender') }} | {{ $order?->user?->details?->gender }} |
| {{ __('Fee') }} | {{ specific_currency_with_icon($order?->payable_currency, $order?->total_payment) }} |
| {{ __('Payment Method') }} | {{ $order?->payment_method }} |
| {{ __('Transaction') }} | {{ $order?->payment_transaction_id }} |
| {{ __('Date') }} | {{ formattedDate($order?->created_at) }} |
| {{ __('Payment Status') }} |
@if ($order?->payment_status == 1)
{{ __('Approved') }} {{__('on')}} - {{ formattedDate($order?->approved_date) }}
@elseif ($order?->payment_status == 'rejected')
{{ __('Rejected') }}
@else
{{ __('Pending') }}
@endif
|
| {{ __('SN') }} | {{ __('Lawyer') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Schedule') }} | {{ __('Date') }} | {{ __('Fee') }} |
|---|---|---|---|---|---|---|
| {{ ++$index }} | {{ $appointment?->lawyer?->name }} | {{ $appointment?->lawyer?->email }} | {{ $appointment?->lawyer?->phone }} | {{ strtoupper($appointment?->schedule?->start_time) . '-' . strtoupper($appointment?->schedule?->end_time) }} | {{ formattedDate($appointment->date) }} | {{ specific_currency_with_icon($appointment?->payable_currency, $appointment->appointment_fee) }} |
@if ($order?->payment_status == 0)
{{ __('Approve Payment') }}
{{ __('Delete Order') }}
@endif