Devdojo Wave CRUD or BREAD operation
Under the hood Wave uses Filament, so you could easily create the CRUD for any model, like so:
php artisan make:filament-resource Post --generate
This will generate a PostResource in the admin panel. Then by passing the --generate
flag all the forms and tables will be created for that Post
model. You'll then be able to vist yourapp.test/admin/posts and you'll have all the CRUD operations available for your Posts.
If you want to dig into this deeper, you can learn about auto-generating resources here: https://filamentphp.com/docs/3.x/panels/resources/getting-started#automatically-generating-forms-and-tables
Hope that helps!
Thanks for the question.















