@extends('backend.layout.master') @section('title', __('History Details')) @section('style') @endsection @section('content')

{{ __('History Details') }}

{{ __('ID') }} {{ $history_details->id }}
{{ __('Name') }} {{ $history_details->user?->first_name .' '.$history_details->user?->last_name }}
{{ __('Email') }} {{ $history_details->user?->email }}
{{ __('Phone') }} {{ $history_details->user?->phone }}
{{ __('Verified Status') }}
{{ __('Payment Gateway') }} @if($history_details->payment_gateway == 'manual_payment') {{ ucfirst(str_replace('_',' ',$history_details->payment_gateway)) }} @else {{ $history_details->payment_gateway == 'authorize_dot_net' ? __('Authorize.Net') : ucfirst($history_details->payment_gateway) }} @endif
{{ __('Payment Status') }} @if($history_details->payment_status == '' || $history_details->payment_status == 'cancel') {{ __('Cancel') }} @else {{ ucfirst($history_details->payment_status) }} @if($history_details->payment_status == 'pending') @endif @endif
{{ __('Deposit Amount') }} {{ float_amount_with_currency_symbol($history_details->amount) }}
{{ __('Manual Payment Image') }} @if(empty($history_details->manual_payment_image)) @else @endif
{{ __('Deposit Date') }} {{ $history_details->created_at }}
@endsection @section('script') @include('wallet::admin.wallet.wallet-js') @endsection