Commands

To add new commandsopen in new window to artisan, simply state the command's class paths inside your config/commands.php

<?php
return [
    \Acme\Console\GenerateSiteStatistics::class,
    \Acme\Console\SendWelcomeEmail::class,
    \Acme\Console\RemoveInactiveUsers::class,
    
    // ... etc
];