@extends('layouts.front') @section('css') @endsection @section('content')
{{ __('Deposit Date') }} | {{ __('Method') }} | {{ __('Amount') }} | {{ __('Status') }} |
---|---|---|---|
{{ date('d-M-Y', strtotime($data->created_at)) }} | {{ $data->method }} | {{ \PriceHelper::showOrderCurrencyPrice($data->amount * $data->currency_value, $data->currency_code) }} | @php if ($data->status == 0) { $class = 'yellow-btn'; $status = 'Pending'; } else { $class = 'green-btn'; $status = 'Completed'; } @endphp |
{{ __('No Deposit Found') }} |