Linux host40.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
: 68.65.120.213 | : 216.73.216.131
Cant Read [ /etc/named.conf ]
7.4.33
trade
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
trade /
doctor.tradesense.co.ke /
routes /
[ HOME SHELL ]
Name
Size
Permission
Action
api.php
566
B
-rw-r--r--
channels.php
551
B
-rw-r--r--
console.php
593
B
-rw-r--r--
web.php
5.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : web.php
<?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/', function () { return view('auth.login'); }); Auth::routes(['register' => false]); Route::get('/home', 'HomeController@index')->name('home'); Route::get('/lang/{locale}', 'HomeController@lang'); //Patients Route::get('/patient/create', 'PatientController@create')->name('patient.create'); Route::post('/patient/create', 'PatientController@store')->name('patient.store'); Route::get('/patient/all', 'PatientController@all')->name('patient.all'); Route::get('/patient/view/{id}', 'PatientController@view')->where('id', '[0-9]+')->name('patient.view'); Route::get('/patient/edit/{id}', 'PatientController@edit')->where('id', '[0-9]+')->name('patient.edit'); Route::post('/patient/edit', 'PatientController@store_edit')->name('patient.store_edit'); //Documents Route::get('/document/all', 'DocumentController@all')->name('document.all'); Route::post('/document/create', 'DocumentController@store')->name('document.store'); Route::get('/document/delete/{id}','DocumentController@destroy')->where('id', '[0-9]+'); //Documents Route::post('/history/create', 'HistoryController@store')->name('history.store'); Route::get('/history/delete/{id}','HistoryController@destroy')->where('id', '[0-9]+'); //Appointments Route::get('/appointment/create', 'AppointmentController@create')->name('appointment.create'); Route::post('/appointment/create', 'AppointmentController@store')->name('appointment.store'); Route::get('/appointment/all', 'AppointmentController@all')->name('appointment.all'); Route::get('/appointment/pending', 'AppointmentController@pending')->name('appointment.pending'); Route::get('/appointment/checkslots/{id}','AppointmentController@checkslots'); Route::get('/appointment/delete/{id}','AppointmentController@destroy')->where('id', '[0-9]+'); Route::post('/appointment/edit', 'AppointmentController@store_edit')->name('appointment.store_edit'); //Drugs Route::get('/drug/create', 'DrugController@create')->name('drug.create'); Route::post('/drug/create', 'DrugController@store')->name('drug.store'); Route::get('/drug/edit/{id}', 'DrugController@edit')->where('id', '[0-9]+')->name('drug.edit'); Route::post('/drug/edit', 'DrugController@store_edit')->name('drug.store_edit'); Route::get('/drug/all', 'DrugController@all')->name('drug.all'); Route::get('/drug/delete/{id}','DrugController@destroy'); //Tests Route::get('/test/create', 'TestController@create')->name('test.create'); Route::post('/test/create', 'TestController@store')->name('test.store'); Route::get('/test/edit/{id}', 'TestController@edit')->name('test.edit'); Route::post('/test/edit', 'TestController@store_edit')->name('test.store_edit'); Route::get('/test/all', 'TestController@all')->name('test.all'); Route::get('/test/delete/{id}', 'TestController@destroy')->where('id', '[0-9]+'); //Prescriptions Route::get('/prescription/create', 'PrescriptionController@create')->name('prescription.create'); Route::post('/prescription/create', 'PrescriptionController@store')->name('prescription.store'); Route::get('/prescription/all', 'PrescriptionController@all')->name('prescription.all'); Route::get('/prescription/view/{id}', 'PrescriptionController@view')->where('id', '[0-9]+')->name('prescription.view'); Route::get('/prescription/pdf/{id}','PrescriptionController@pdf')->where('id', '[0-9]+'); Route::get('/prescription/delete/{id}','PrescriptionController@destroy'); Route::get('/prescription/edit/{id}','PrescriptionController@edit')->where('id', '[0-9]+'); Route::post('/prescription/update', 'PrescriptionController@update')->name('prescription.update'); //Billing Route::get('/billing/create', 'BillingController@create')->name('billing.create'); Route::post('/billing/create', 'BillingController@store')->name('billing.store'); Route::get('/billing/all', 'BillingController@all')->name('billing.all'); Route::get('/billing/view/{id}', 'BillingController@view')->where('id', '[0-9]+')->name('billing.view'); Route::get('/billing/pdf/{id}','BillingController@pdf')->where('id', '[0-9]+'); Route::get('/billing/delete/{id}','BillingController@destroy'); Route::get('/billing/edit/{id}','BillingController@edit')->where('id', '[0-9]+'); Route::post('/billing/update', 'BillingController@update')->name('billing.update'); //Settings /* Doctorino Settings */ Route::get('/settings/doctorino_settings', 'SettingController@doctorino_settings')->name('doctorino_settings.edit'); Route::post('/settings/doctorino_settings', 'SettingController@doctorino_settings_store')->name('doctorino_settings.store'); /* Prescription Settings */ Route::get('/settings/prescription_settings', 'SettingController@prescription_settings')->name('prescription_settings.edit'); Route::post('/settings/prescription_settings', 'SettingController@prescription_settings_store')->name('prescription_settings.store'); /* SMS Settings */ Route::get('/settings/sms_settings', 'SettingController@sms_settings')->name('sms_settings.edit'); Route::post('/settings/sms_settings', 'SettingController@sms_settings_store')->name('sms_settings.store');
Close