@extends('layouts.user') @section('title') @lang('Transactions') @endsection @section('breadcrumb') @lang('Transactions') @endsection @push('extra')
@endpush @section('content')

@lang('Transactions')

@forelse($transactions as $item) @empty @endforelse
@lang('Date') @lang('Transaction ID') @lang('Remark') @lang('Amount') @lang('Details')
{{dateFormat($item->created_at,'d-M-Y')}} {{__($item->trnx)}} {{ucwords(str_replace('_',' ',$item->remark))}} {{$item->type}} {{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}}
@lang('No data found!')
@if ($transactions->hasPages()) @endif
@endsection @push('script') @endpush