PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Question By
Unsolved

Devdojo Wave CRUD or BREAD operation

sathesh

Jul 15th, 2025 12:21 AM

I'd like to have a basic CRUD or BREAD operation with devdojo wave app in the Admin dashboard. Is there an easy way to achieve this? Thanks a lot.

tnylea

Jul 15th, 2025 06:26 AM

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.

Report
1