@extends('frontend.template-1.partials.master') @section('content') @include('frontend.template-1.breadcrumb.breadcrumb')
| {{ translate('Date') }} | {{ translate('Method') }} | {{ translate('Transaction ID') }} | {{ translate('Currency') }} | {{ translate('Amount') }} | {{ translate('Status') }} |
|---|---|---|---|---|---|
| {{ dateFormat($deposit->created_at) }} | {{ Ucfirst($deposit->payment_method) }} | {{ $deposit->transaction_id }} | {{ $deposit->currency }} | {{ currency_symbol() . $deposit->amount }} | @if ($deposit->status == 1) {{ translate('Processing') }} @elseif($deposit->status == 2) {{ translate('Completed') }}@else{{ translate('Cancel') }} @endif |
{{ translate('No Data Found') }} |
|||||
{{ translate('Showing') }} {{ $deposits->firstItem() }} {{ translate('to') }} {{ $deposits->lastItem() }} {{ translate('of total') }} {{ $deposits->total() }} {{ translate('entries') }}
{!! $deposits->links('vendor.pagination.custom') !!}