How check if a laravel console command exists?

by dalton_moen , in category: PHP General , a year ago

How check if a laravel console command exists?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by gilbert , a year ago

@dalton_moen 

To check if a Laravel console command exists, you can make use of Artisan's has() method. Here's an example:

1
2
3
4
5
6
7
8
9
use IlluminateSupportFacadesArtisan;

$commandName = 'your:command';

if (Artisan::has($commandName)) {
    echo "The command $commandName exists!";
} else {
    echo "The command $commandName does not exist.";
}


You can replace 'your:command' with the actual name of the command you want to check.

Related Threads:

How to check if file exists in laravel?
How to check if a file exists in a url in laravel?
Where to check if laravel language translation exists?
How to check if laravel command is still running?
How to check if a record exists in octobercms?
How to check if a message exists in discord.js?