ComfyCoders TranquilTools
Docs /Laravel Vue CrudBuilder
Repository
v1

Laravel Vue CRUD Builder

Full CRUD scaffolding for Laravel + Vue 3 + Inertia.js.

Point it at a model and it auto-generates form fields and table columns from your database schema. Or wire in explicit form and table classes for full control. Either way, one command gives you a working index, create, edit, and delete flow.

What it generates

app/Http/Controllers/UserController.php
resources/js/pages/Users/Index.vue
resources/js/pages/Users/Form.vue

The controller extends Laravel's Controller and includes all six CRUD actions explicitly. The Vue pages use the FormBuilder and TableBuilder components.

Dependencies

*) Both form and table builder are pulled in automatically as Composer dependencies, no need to require them separately.