Crud Generator Laravel is a package that you can integrate into your Laravel to create a REAL CRUD : controller with all the code already written views (index, create, edit, show) model with relationships request file with rules migration file If you don't use Laravel Collective Form package in your project, install it: composer require laravelcollective/html
Add your Comment CRUD (with a column comment and a post_id) php artisan make:crud comment "comment:text, post_id:integer" Add your Tag CRUD (with a column name) php artisan make:crud tag "name"