@extends('admin.layout.base') @section('title', 'Transaction History ') @section('content')
@if(Setting::get('demo_mode') == 1)
** Demo Mode : No Permission to Edit and Delete.
@endif
Transaction History @if(Setting::get('demo_mode', 0) == 1) (*personal information hidden in demo) @endif
Back @foreach($tranasction_history as $index => $history) @endforeach
@lang('admin.id') Recharge Option Amount Payment Status Paid Date
{{ $index + 1 + $page_plus }} {{ $history->recharge_option }} {{ $history->amount }} {{ $history->payment_status }} {{ date('d M Y', strtotime($history->created_at) )}}
@lang('admin.id') Recharge Option Amount Payment Status Paid Date
@endsection