You are viewing documentation for an outdated version. It is no longer supported!

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
];