python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Npm run dev opens notepad
I have a fresh installation of laravel 9 and nova 4 where i try to create a new resource tool. When i try to run npm run dev or npm run watch, it opens notepad with the mix file instead of compiling. ...
BakkertjeBrood
Votes: 0
Answers: 0
Laravel Nova action models empty
Here is my action.
public function actions(Request $request)
{
return [
new ApprovedUserAction,
(new RejectUserAction)->make()->standalone(),
];
}
This is my action code...
PHPDEV
Votes: 0
Answers: 1
Changing a field in multiple rows in one task, in a Laravel Nova application
I have a list of UserTasks (model/resource) with a User (model/resource) set as owner (field). The list is made from a Nova/Ressource class.
I can select many rows in the list. (no problem - Nova out...
Anders Finn Jørgensen
Votes: 0
Answers: 1
Laravel Nova Dependency Container what are the allowed resource properties other than id in dependsOn
I have a belongsTo field on the selection of which i want to show/hide another field using nova dependency container. But it only allows to give id in the dependsOn('page.id', 1) but i want to show th...
Ankit Jain
Votes: 0
Answers: 1