@extends('Admin.layouts.App')
@section('content')
User Name: |
@if(!empty($Withdraw->user->name))
{{ $Withdraw->user->name }} |
@else
-
@endif
Account Id: |
@if(!empty($Withdraw->account_id))
{{ $Withdraw->account_id }} |
@else
-
@endif
Amount: |
@if(!empty($Withdraw->amount))
{{ $Withdraw->amount }} |
@else
-
@endif
Payment Method: |
@if(!empty($Withdraw->PaymentMethod->name))
{{ $Withdraw->PaymentMethod->name }} |
@else
-
@endif
Created At: |
@if(!empty($Withdraw->created_at))
{{ $Withdraw->created_at->format('Y-m-d') }} |
@else
-
@endif
@endsection