Resource Controller

Artisan dapat menghasilkan Resource Controller dengan 7 action CRUD standar (index, create, store, show, edit, update, destroy).

👀 Contoh dulu

php artisan make:controller ProductController --resource

Hasilnya: INFO Controller [app/Http/Controllers/ProductController.php] created successfully.

💡 Daftarkan di web.php dengan Route::resource('products', ProductController::class).

📝 Sekarang giliranmu

Tulis perintah artisan untuk membuat Resource Controller bernama UserController.

Preview