@extends('layouts.admin.app', ['page' => $menuAdmin['delivery_boy_management']['active'] ?? "", 'sub_page' => $menuAdmin['delivery_boy_management']['route']['delivery_boy_withdrawals']['sub_active']]) @section('title', __('labels.withdrawal_request_details')) @section('header_data') @php $page_title = __('labels.withdrawal_request_details'); $page_pretitle = __('labels.admin') . " " . __('labels.delivery_boy_withdrawals'); @endphp @endsection @php $breadcrumbs = [ ['title' => __('labels.home'), 'url' => route('admin.dashboard')], ['title' => __('labels.delivery_boy_withdrawals'), 'url' => route('admin.delivery-boy-withdrawals.index')], ['title' => __('labels.withdrawal_request_details'), 'url' => null], ]; @endphp @section('admin-content')
| {{ __('labels.id') }} | {{ $withdrawalRequest->id }} |
| {{ __('labels.delivery_boy') }} | {{ $withdrawalRequest->deliveryBoy->user->name ?? 'N/A' }} |
| {{ __('labels.amount') }} | {{ number_format($withdrawalRequest->amount, 2) }} |
| {{ __('labels.status') }} | {{ ucfirst($withdrawalRequest->status) }} |
| {{ __('labels.request_note') }} | {{ $withdrawalRequest->request_note ?? 'N/A' }} |
| {{ __('labels.created_at') }} | {{ $withdrawalRequest->created_at->format('d M Y, H:i') }} |
| {{ __('labels.admin_remark') }} | {{ $withdrawalRequest->admin_remark ?? 'N/A' }} |
| {{ __('labels.processed_at') }} | {{ $withdrawalRequest->processed_at ? $withdrawalRequest->processed_at->format('d M Y, H:i') : 'N/A' }} |
| {{ __('labels.processed_by') }} | {{ $withdrawalRequest->processedBy->name ?? 'N/A' }} |
| {{ __('labels.transaction_id') }} | {{ $withdrawalRequest->transaction->id ?? 'N/A' }} |
| {{ __('labels.transaction_type') }} | {{ ucfirst($withdrawalRequest->transaction->transaction_type ?? 'N/A') }} |