One Hat Cyber Team
Your IP:
216.73.216.102
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
fluxyjvi
/
www
/
project
/
resources
/
views
/
user
/
View File Name :
transactions.blade.php
@extends('layouts.user') @section('contents') <div class="breadcrumb-area"> <h3 class="title">@lang('Transaction')</h3> <ul class="breadcrumb"> <li> <a href="{{ route('user.dashboard') }}">@lang('Dashboard')</a> </li> <li> @lang('Transaction') </li> </ul> </div> <div class="dashboard--content-item"> <div class="card p-3 default--card"> <form action="{{ route('user.transaction') }}" method="get"> <div class="row "> <div class="col-md-4"> <input name="trx_no" class="form-control" autocomplete="off" placeholder="{{__('Transaction no')}}" type="text" value="{{ old('trx_no')}}"> </div> <div class="col-md-4"> <select id="type" name="type" required class="form-control"> <option value="">{{ __('Select Type') }}</option> <option value="all" {{ request()->type == 'all' ? 'selected' : '' }}>{{ __('All') }}</option> <option value="Deposit" {{ request()->type == 'Deposit' ? 'selected' : '' }}>{{ __('Deposit') }}</option> <option value="Payout" {{ request()->type == 'Payout' ? 'selected' : '' }}>{{ __('Payout') }}</option> <option value="ReferralBonus" {{ request()->type == 'ReferralBonus' ? 'selected' : '' }}>{{ __('Referral Bonus') }}</option> <option value="SendMoney" {{ request()->type == 'SendMoney' ? 'selected' : '' }}>{{ __('Send Money') }}</option> <option value="ReceiveMoney" {{ request()->type == 'ReceiveMoney' ? 'selected' : '' }}>{{ __('Receive Money') }}</option> <option value="Invest" {{ request()->type == 'Invest' ? 'selected' : '' }}>{{ __('Invest') }}</option> <option value="InterestMoney" {{ request()->type == 'InterestMoney' ? 'selected' : '' }}>{{ __('Interest Money') }}</option> <option value="RequestMoney" {{ request()->type == 'RequestMoney' ? 'selected' : '' }}>{{ __('Request Money') }}</option> <option value="Payout Accepted" {{ request()->type == 'Payout Accepted' ? 'selected' : '' }}>{{ __('Payout Accepted') }}</option> <option value="PayoutRejected" {{ request()->type == 'PayoutRejected' ? 'selected' : '' }}>{{ __('Payout Rejected') }}</option> </select> </div> <div class="col-md-4"> <button type="submit" class="cmn--btn bg--primary submit-btn w-100 border-0">{{__('Submit')}}</button> </div> </div> </form> </div> </div> <div class="dashboard--content-item"> <div class="table-responsive table--mobile-lg"> <table class="table bg--body"> <thead> <tr> <th>@lang('No')</th> <th>@lang('Type')</th> <th>@lang('Txnid')</th> <th>@lang('Amount')</th> <th>@lang('Date')</th> </tr> </thead> <tbody> @if (count($transactions) == 0) <tr> <td colspan="12"> <h4 class="text-center m-0 py-2">{{__('No Data Found')}}</h4> </td> </tr> @else @foreach($transactions as $key=>$data) @php $from = App\Models\User::where('id',$data->user_id)->first(); @endphp <tr> <td data-label="@lang('No')"> <div> <span class="text-muted">{{ $loop->iteration }}</span> </div> </td> <td data-label="@lang('Type')"> <div> {{ strtoupper($data->type) }} </div> </td> <td data-label="@lang('Txnid')"> <div> {{ $data->txnid }} </div> </td> <td data-label="@lang('Amount')"> <div> <p class="text-{{ $data->profit == 'plus' ? 'success' : 'danger'}}">{{ showPrice($data->amount) }}</p> </div> </td> <td data-label="@lang('Date')"> <div> {{date('d M Y',strtotime($data->created_at))}} </div> </td> </tr> @endforeach @endif </tbody> </table> </div> {{ $transactions->links() }} </div> @endsection @push('js') @endpush