Create model, factory, migration, seeder and controller with: php artisan make:model {Model} -a
Implement routing for {Model}: Route::resource('{Model}', {Model}Controller::class);
Create events for {Model} based on CRUD and other actions within: /app/Events/{Model}/
Create service for {Model}