@extends('admin.layouts.app') @section('panel')
@forelse($transactions as $trx) @empty @endforelse
Date TRX Username Type Amount Charge Total Detail
{{ show_datetime($trx->created_at) }} {{ strtoupper($trx->trx) }} {{ $trx->user->username }} @if($trx->type == 'deposit') {{ $trx->type }} @elseif($trx->type == 'withdraw') {{ $trx->type }} @endif {{ $general->cur_text }}{{ formatter_money($trx->main_amo) }} {{ $general->cur_text }}{{ formatter_money($trx->charge) }} {{ $general->cur_text }}{{ formatter_money($trx->amount) }} {{ $trx->title }}
{{ $empty_message }}
@endsection @push('breadcrumb-plugins') @if(request()->routeIs('admin.users.transactions'))
@else
@endif @endpush