Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Antonella's avatar

call command from web interface / menu

there is a plug-in that manages to call a command from the web interface.

I created a command with php make: command and I wanted to call it from the web interface only I was wondering if it was possible with laravel nova ?

0 likes
5 replies
bugsysha's avatar

You can create Nova action and call if from there with \Illuminate\Support\Facades\Artisan::call(NameOfTheCommand::class);.

1 like
Antonella's avatar

ok so are you telling me that i can create a resource put the command you told me? @bugsysha

bugsysha's avatar

Nope. I said that you can create Nova action and inside of it call the command via Artisan::call().

Please or to participate in this conversation.