@extends('layouts.backend.app') @section('content') @php $currency=\App\Options::where('key','currency_icon')->select('value')->first(); @endphp
{{ __('Transaction ID') }} | {{ __('Amount') }} | {{ __('Payout Method') }} | {{ __('Date Processed') }} | {{ __('Payout Status') }} |
---|---|---|---|---|
#{{ $row->id }} | {{ $row->amount }} | {{ strtoupper($row->payment_mode) }} | {{ $row->created_at->format('Y-F-d') }} | @if($row->status==0) {{ __('Canceled') }} @elseif($row->status==1) {{ __('Completed') }} @elseif($row->status==2) {{ __('Processing') }} @endif |