Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
ap.tsgbd.com /
app /
Console /
Delete
Unzip
Name
Size
Permission
Date
Action
Commands
[ DIR ]
drwxr-xr-x
2025-12-16 01:59
Kernel.php
1.71
KB
-rw-r--r--
2025-12-16 01:59
Save
Rename
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) { $env = config('app.env'); $email = config('mail.username'); if ($env === 'live') { //Scheduling backup, specify the time when the backup will get cleaned & time when it will run. $schedule->command('backup:clean')->daily()->at('01:00'); $schedule->command('backup:run')->daily()->at('01:30'); //Schedule to create recurring invoices $schedule->command('pos:generateSubscriptionInvoices')->dailyAt('23:30'); $schedule->command('pos:updateRewardPoints')->dailyAt('23:45'); $schedule->command('pos:autoSendPaymentReminder')->dailyAt('8:00'); $schedule->command('pos:generateRecurringExpense')->dailyAt('02:00'); } if ($env === 'demo') { //IMPORTANT NOTE: This command will delete all business details and create dummy business, run only in demo server. $schedule->command('pos:dummyBusiness') ->cron('0 */3 * * *') //->everyThirtyMinutes() ->emailOutputTo($email); } } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }