Handling Multiple Values in Laravel Artisan Commands
Need to accept multiple values in your Artisan commands? Laravel's array syntax makes it simple! Let's explore how to handle multiple arguments and options in your commands.
Multiple Arguments
For arguments that accept multiple values, use the * character:
protected $signature = 'mail:send {user*}';
This