Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
resources
/
views
/
purpose
/
user
:
transactions.blade.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
@extends('layouts.dash') @section('title', $title) @section('content') <!-- Page title --> <div class="page-title"> <div class="row justify-content-between align-items-center"> <div class="mb-3 col-md-6 mb-md-0"> <h5 class="mb-0 text-white h3 font-weight-400">Transaction Records</h5> </div> </div> </div> <x-danger-alert /> <x-success-alert /> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <ul class="mb-3 nav nav-pills nav-pills-icon nav-justified" id="pills-tab" role="tablist"> <li class="p-2 nav-item" role="presentation"> <a class="nav-link active" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true"> <span class="d-block"> <i class="fas fa-download "></i> </span> <span class="mt-2 d-none d-sm-block">Deposit</span> </a> </li> <li class="p-2 nav-item" role="presentation"> <a class="nav-link" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false"> <span class="d-block"> <i class="fas fa-arrow-alt-circle-up "></i> </span> <span class="mt-2 d-none d-sm-block">Withdrawal</span> </a> </li> <li class="p-2 nav-item" role="presentation"> <a class="nav-link" id="pills-contact-tab" data-toggle="pill" href="#pills-contact" role="tab" aria-controls="pills-contact" aria-selected="false"> <span class="d-block"> <i class="far fa-arrow-alt-from-left"></i> </span> <span class="mt-2 d-none d-sm-block">Others</span> </a> </li> </ul> <div class="tab-content" id="pills-tabContent"> <div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab"> <div class="table-responsive"> <table id="DeposTbl" class="table table-hover "> <thead> <tr> <th>Amount</th> <th>Payment mode</th> <th>Status</th> <th>Date created</th> </tr> </thead> <tbody> @foreach ($deposits as $deposit) <tr> <td>{{ $settings->currency }}{{ $deposit->amount }}</td> <td>{{ $deposit->payment_mode }}</td> <td> @if ($deposit->status == 'Processed') <span class="badge badge-success">{{ $deposit->status }}</span> @else <span class="badge badge-danger">{{ $deposit->status }}</span> @endif </td> <td>{{ \Carbon\Carbon::parse($deposit->created_at)->toDayDateTimeString() }} </td> </tr> @endforeach </tbody> </table> </div> </div> <div class="tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab"> <div class="table-responsive"> <table id="WithdrawTbl" class="table table-hover "> <thead> <tr> <th>Amount requested</th> <th>Amount + charges</th> <th>Recieving mode</th> <th>Status</th> <th>Date created</th> </tr> </thead> <tbody> @foreach ($withdrawals as $withdrawal) <tr> <td>{{ $settings->currency }}{{ $withdrawal->amount }}</td> <td>{{ $settings->currency }}{{ $withdrawal->to_deduct }}</td> <td>{{ $withdrawal->payment_mode }}</td> <td> @if ($withdrawal->status == 'Processed') <span class="badge badge-success">{{ $withdrawal->status }}</span> @else <span class="badge badge-danger">{{ $withdrawal->status }}</span> @endif </td> <td>{{ \Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString() }} </td> </tr> @endforeach </tbody> </table> </div> </div> <div class="tab-pane fade" id="pills-contact" role="tabpanel" aria-labelledby="pills-contact-tab"> <div class="table-responsive"> <table id="OthersTable" class="table table-hover "> <thead> <tr> <th>Amount</th> <th>Type</th> <th>Plan/Narration</th> <th>Date created</th> </tr> </thead> <tbody> @foreach ($t_history as $history) <tr> <td>{{ $settings->currency }}{{ $history->amount }}</td> <td>{{ $history->type }}</td> <td>{{ $history->plan }}</td> <td>{{ \Carbon\Carbon::parse($history->created_at)->toDayDateTimeString() }} </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> </div> </div> @endsection