@extends('layouts.load') @section('content')
| {{ __("Rider ID#") }} | {{$withdraw->rider->id}} |
|---|---|
| {{ __("Rider Name") }} | {{$withdraw->rider->name}} |
| {{ __("Withdraw Amount") }} | {{ \PriceHelper::showAdminCurrencyPrice($withdraw->amount * $sign->value) }} |
| {{ __("Withdraw Charge") }} | {{ \PriceHelper::showAdminCurrencyPrice($withdraw->fee * $sign->value) }} |
| {{ __("Withdraw Process Date") }} | {{date('d-M-Y',strtotime($withdraw->created_at))}} |
| {{ __("Withdraw Status") }} | {{ucfirst($withdraw->status)}} |
| {{ __("Rider Email") }} | {{$withdraw->rider->email}} |
| {{ __("Rider Phone") }} | {{$withdraw->rider->phone}} |
| {{ __("Withdraw Method") }} | {{$withdraw->method}} |
| {{$withdraw->method}} {{ __("Email") }}: | {{$withdraw->acc_email}} |
| {{$withdraw->method}} {{ __("Account") }}: | {{$withdraw->iban}} |
| {{ __("Account Name") }}: | {{$withdraw->acc_name}} |
| {{ __("Country") }} | {{ucfirst(strtolower($withdraw->country))}} |
| {{ __("Address") }} | {{$withdraw->address}} |
| {{$withdraw->method}} {{__("Swift Code")}}: | {{$withdraw->swift}} |