⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.138
Server IP:
186.226.58.36
Server:
Linux da02.sh15.net 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Server Software:
Apache/2
PHP Version:
8.1.32
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
redesystem
/
public_html
/
sys
/
app
/
Console
/
View File Name :
Kernel.php
<?php namespace App\Console; use App\Console\Commands\DueDateInvoiceReminderCommand; use App\Console\Commands\RecurringInvoiceCommand; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * Define the application's command schedule. */ protected function schedule(Schedule $schedule): void { $schedule->command(RecurringInvoiceCommand::class) ->daily() ->appendOutputTo(storage_path('logs/commands.log')); $schedule->command(DueDateInvoiceReminderCommand::class) ->daily() ->appendOutputTo(storage_path('logs/commands.log')); } /** * Register the commands for the application. */ protected function commands(): void { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }