@extends('layouts.app')
@section('title', 'Wallet Transactions')

@section('content')

    <!-- Main content -->
    <section class="content">

        <div class="row">

            <div class="col-12">
                <div class="box">
                    <div class="box-body">
                        <h4 class="box-title text-info mb-0"><i class="fa fa-list fa-sx"></i> Wallet Transactions</h4>
                        <hr class="my-15">
                        <div class="table-responsive">
                            <table class="table mt-0 table-hover no-wrap">
                                <thead>
                                    <tr>
                                        <th>Dated</th>
                                        <th>Amount</th>
                                        <th>Transaction Type</th>
                                        <th>Description</th>

                                    </tr>
                                </thead>
                                <tbody>
                                    @if(isset($walletTransactions))
                                        @foreach($walletTransactions as $key => $walletTransaction)
                                            <tr>
                                                <td>{{$walletTransaction->created_at}}</td>
                                                <td>{{ Session::get('currency') }} {{ number_format($walletTransaction->amount / 1, 2, '.', '') }}</td>
                                                <td>{{ucfirst($walletTransaction->transaction_type)}}</td>
                                                <td>{{$walletTransaction->description}}</td>
                                            </tr>
                                        @endforeach
                                    @endif
                                </tbody>
                            </table>

                        </div><!-- /.box-body -->


                    </div>

                </div>
            </div>
        </div>
        </div>
        <!-- /.row -->

        <!-- Button trigger modal -->



        <?php  ?>
        </div>
    </section>






@endsection
