[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: index.blade.php
@extends('layouts.master') @section('title') {{ __('Business List') }} @endsection @section('main_content') <div class="erp-table-section"> <div class="container-fluid"> <div class="card "> <div class="card-bodys"> <div class="table-header p-16"> <h4>{{ __('Business List') }}</h4> @can('business-read') <a type="button" href="{{route('admin.business.create')}}" class="add-order-btn rounded-2 {{ Route::is('admin.business.create') ? 'active' : '' }}" class="btn btn-primary" ><i class="fas fa-plus-circle me-1"></i>{{ __('Add new Business') }}</a> @endcan </div> <div class="table-top-form p-16-0"> <form action="{{ route('admin.business.filter') }}" method="post" class="filter-form" table="#business-data"> @csrf <div class="table-top-left d-flex gap-3 margin-l-16"> <div class="gpt-up-down-arrow position-relative"> <select name="per_page" class="form-control"> <option value="10">{{__('Show- 10')}}</option> <option value="25">{{__('Show- 25')}}</option> <option value="50">{{__('Show- 50')}}</option> <option value="100">{{__('Show- 100')}}</option> </select> <span></span> </div> <div class="table-search position-relative"> <input class="form-control searchInput" type="text" name="search" placeholder="{{ __('Search...') }}" value="{{ request('search') }}"> <span class="position-absolute"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M14.582 14.582L18.332 18.332" stroke="#4D4D4D" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/> <path d="M16.668 9.16797C16.668 5.02584 13.3101 1.66797 9.16797 1.66797C5.02584 1.66797 1.66797 5.02584 1.66797 9.16797C1.66797 13.3101 5.02584 16.668 9.16797 16.668C13.3101 16.668 16.668 13.3101 16.668 9.16797Z" stroke="#4D4D4D" stroke-width="1.25" stroke-linejoin="round"/> </svg> </span> </div> </div> </form> </div> </div> <div class="responsive-table m-0"> <table class="table" id="datatable"> <thead> <tr> <th> <div class="d-flex align-items-center gap-1"> <label class="table-custom-checkbox"> <input type="checkbox" class="table-hidden-checkbox selectAllCheckbox"> <span class="table-custom-checkmark custom-checkmark"></span> </label> <i class="fal fa-trash-alt delete-selected"></i> </div> </th> <th> {{ __('SL') }}. </th> <th> {{ __('Business Name') }} </th> <th> {{ __('Business Category') }} </th> <th> {{ __('Phone') }} </th> <th> {{ __('Package') }} </th> <th> {{ __('Last Enroll') }} </th> <th> {{ __('Expired Date') }} </th> <th> {{ __('Action') }} </th> </tr> </thead> <tbody id="business-data" class="searchResults"> @include('admin.business.datas') </tbody> </table> </div> <div class="mt-3"> {{ $businesses->links('vendor.pagination.bootstrap-5') }} </div> </div> </div> </div> @endsection @push('modal') @include('admin.components.multi-delete-modal') {{-- Business Plan Update modal --}} <div class="modal modal-md fade" id="business-upgrade-modal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content b-radious-24"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel">{{ __('Upgrade Plan') }}</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <form action="" method="post" enctype="multipart/form-data" class="ajaxform_instant_reload upgradePlan"> @csrf @method('put') <div class="mt-3"> <label>{{ __('Business Name') }}</label> <input class="form-control" id="business_name" readonly> <input name="business_id" id="business_id" type="hidden"> </div> <div class="mt-3"> <label for="plan_id">{{ __('Select A Plan') }}</label> <div class="gpt-up-down-arrow position-relative"> <select name="plan_id" id="plan_id" class="form-control"> <option value="">{{ __('Select One') }}</option> @foreach ($plans as $plan) <option data-price="{{ $plan->offerPrice ?? $plan->subscriptionPrice }}" value="{{ $plan->id }}">{{ $plan->subscriptionName }}</option> @endforeach </select> <span></span> </div> </div> <div class="mt-3"> <label>{{ __('Price') }}</label> <input class="form-control plan-price" name="price" type="number" step="any" placeholder="{{ __('Enter plan price or select a plan') }}"> </div> <div class="mt-3"> <label for="gateway_id">{{ __('Payment Gateways') }}</label> <div class="gpt-up-down-arrow position-relative"> <select name="gateway_id" id="gateway_id" class="form-control"> <option value="">{{ __('Select A payment gateway') }}</option> @foreach ($gateways as $gateway) <option value="{{ $gateway->id }}">{{ $gateway->name }}</option> @endforeach </select> <span></span> </div> </div> <div class="mt-3"> <label>{{ __('Notes') }}</label> <textarea name="notes" id="notes" class="form-control" placeholder="{{ __('Enter notes') }}">{{ 'Plan subscribed by '. auth()->user()->name }}</textarea> </div> <div class="col-lg-12"> <div class="button-group text-center mt-5"> <button type="reset" class="theme-btn border-btn m-2">{{ __('Reset') }}</button> <button class="theme-btn m-2 submit-btn">{{ __('Save') }}</button> </div> </div> </form> </div> </div> </div> </div> {{--business view modal --}} <div class="modal fade" id="business-view-modal"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-header"> <h1 class="modal-title fs-5">{{ __('Business View') }} (<span class="business_name"></span>)</h1> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="personal-info"> <div class="row mt-2"> <div class="col-12 text-center"> <img width="100px" width="100px" class="rounded-circle border-2 shadow" src="" id="image" alt=""> </div> </div> <div class="row align-items-center mt-4"> <div class="col-md-4"><p>{{ __('Business Name') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p class="business_name"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Business Category') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="category"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Phone') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="phone"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Address') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="address"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Package') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="package"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Upgrade Date') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="last_enroll"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Expired Date') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="expired_date"></p></div> </div> <div class="row align-items-center mt-3"> <div class="col-md-4"><p>{{ __('Created date') }}</p></div> <div class="col-1"> <p>:</p> </div> <div class="col-md-7"><p id="created_date"></p></div> </div> </div> </div> </div> </div> </div> @endpush @push('js') <script src="{{ asset('assets/js/custom/custom.js') }}"></script> @endpush
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.87 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002