@extends('layout.emapp') @section('content') @if (Session::has('status')) {{ Session::get('status') }} @endif @if (Session::has('error')) {{ Session::get('error') }} @endif {{ __('My Wallet') }} {{ __('Balance') }}   :   KWD @if ($wallet) {{ $int }}.{{ $dec }} @else 00 @endif {{ __('buy credit') }} {{ __('Transaction history') }} {{ __('Transaction id') }} {{ __('Name') }} {{ __('Payment Method') }} {{ __('Date') }} {{ __('Status') }} {{ __('Download') }} @foreach ($transaction as $item) {{ $item['random_no'] }} {{ session()->get('employer')['name'] }} {{ $item['payment_method'] }} {{ $item['created_at'] }} @if ($item['status'] == 1) {{ __('received') }} @elseif($item['status'] == 0) {{ __('Cancel') }} @else {{ __('refund') }} @endif @endforeach @endsection @section('script') {{-- --}} @endsection