You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You have the possibility of 100% customizing the generated views, this is achieved in the following way:
119
+
1.- Run this command `php artisan vendor:publish --tag=crud` this will create the `crud.php` file in your config/ folder.
120
+
2.- Update the variable `stub_path`, to your own stub folder like `'stub_path' => resource_path('stubs/'),`
121
+
3.- Copy the files from my package stubs folder to your own folder from [Here](https://github.com/awais-vteams/laravel-crud-generator/tree/master/src/stubs)
122
+
4.- Update your changes. You can delete extra files/folders like api or livewire folder if you are not using it.
123
+
5.- Run the command for crud `php artisan make:crud NameCrud` generation and you'll get the updated views.
0 commit comments