@extends ('backend.layouts.app') @section ('title', trans('Wallet History')) @section('page-header')

{{ trans('Wallet History') }} {{ trans('') }}

@endsection @section('content')

{{ trans('Details') }}

@foreach($history as $histo) @endforeach
{{ trans('Currency') }} {{ trans('Amount') }} {{ trans('Topup Date & Time') }}
{{$histo->currency_code}} {{$histo->amount}} {{$histo->created_at}}
@stop