One Hat Cyber Team
Your IP:
216.73.216.101
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
/
thread-self
/
root
/
proc
/
thread-self
/
cwd
/
Edit File:
invest.tar
index.blade.php 0000644 00000007401 15112000771 0007426 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">{{ __('Invests') }}</h5> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.invests.index') }}">{{ __('Invests') }}</a></li> </ol> </div> </div> <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>{{__('Customer')}}</th> <th>{{__('Plan')}}</th> <th>{{__('Method')}}</th> <th>{{__('Invest')}}</th> <th>{{__('Status')}}</th> <th>{{__('Next Payment')}}</th> <th>{{__('Actions')}}</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.invests.datatables') }}', columns: [ { data: 'user_id', name: 'user_id' }, { data: 'plan_id', name: 'plan_id' }, { data: 'method', name: 'method' }, { data: 'amount', name: 'amount' }, { data: 'status', name: 'status' }, { data: 'profit_time', name: 'profit_time' }, { 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 00000017362 15112000771 0007753 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>{{$invest->user->id}}</td> </tr> <tr> <th>{{ __("User Name") }}</th> <td> <a href="{{route('admin-user-show',$invest->user->id)}}" target="_blank">{{$invest->user->name}}</a> </td> </tr> @if ($invest->amount != NULL) <tr> <th>{{ __("Invest Amount") }}</th> <td>${{ round($invest->amount, 2) }}</td> </tr> @endif @if ($invest->method == 'Manual') <tr> <th>{{ __("Transaction ID/Number") }}</th> <td>{{$invest->txnid}}</td> </tr> @endif @if ($invest->coin_amount != NULL) <tr> <th>{{ __("Coin Amount") }}</th> <td>{{ round($invest->coin_amount, 2) }}</td> </tr> @endif <tr> <th>{{ __("Invest Status") }}</th> @if ($invest->status == 0) <td> <td>{{ __('Pending') }}</td> </td> @elseif ($invest->status == 1) <td> <td>{{ __('Running') }}</td> </td> @else <td> <td>{{ __('Completed') }}</td> </td> @endif </tr> <tr> <th>{{ __("Lifetime Return") }}</th> @if ($invest->lifetime_return == 1) <td> <td>{{ __('YES') }}</td> </td> @else <td> <td>{{ __('NO') }}</td> </td> @endif </tr> <tr> <th>{{ __("Capital Back") }}</th> @if ($invest->capital_back == 1) <td> <td>{{ __('YES') }}</td> </td> @else <td> <td>{{ __('NO') }}</td> </td> @endif </tr> <tr> <th>{{ __("Payment Status") }}</th> @if ($invest->payment_status == 'pending') <td> <td>{{ __('PENDING') }}</td> </td> @else <td> <td>{{ __('COMPLETED') }}</td> </td> @endif </tr> <tr> <th>{{ __("User Email") }}</th> <td>{{$invest->user->email}}</td> </tr> <tr> <th>{{ __("User Phone") }}</th> <td>{{$invest->user->phone}}</td> </tr> <tr> <th>{{ __("Invest Method") }}</th> <td>{{$invest->method}}</td> </tr> </table> </div> </div> </div> </div> </div> </div> </div> @endsection
Simpan