php artisan make:model Category -m -f -s php artisan make:model Product -m -f -s php artisan make:model ProductDetail -m -f -s
php artisan make:request CategoryRequest php artisan make:request ProductRequest php artisan make:request ProductDetailRequest
php artisan make:resource CategoryResource php artisan make:resource ProductResource php artisan make:resource ProductDetailResource
php artisan make:controller Api/CategoryController --api --model=Category php artisan make:controller Api/ProductController --api --model=Product php artisan make:controller Api/ProductDetailController --api --model=ProductDetail
php artisan migrate
php artisan route:clear php artisan config:clear php artisan cache:clear php artisan view:clear composer dump-autoload
php artisan install:api
php artisan optimize:clear