@extends('layouts.user') @push('css') @endpush @section('title')

@lang('All Transactions!')

@lang('Dashboard')
@endsection @section('content')
@if (count($transactions) == 0) @else @foreach($transactions as $key=>$data) @endforeach @endif
@lang('No') @lang('Txnid') @lang('Type') @lang('Amount') @lang('Date')

{{__('No Data Found')}}

{{ $loop->iteration }}
{{ $data->txnid }}
{{ strtoupper($data->type) }}

{{ showSignAmount($data->amount) }}

{{date('d M Y',strtotime($data->created_at))}}
{{ $transactions->links() }}
@endsection @push('js') @endpush