- install Xampp
- install composer
composer create-project laravel/laravel RestfulApi
php artisan make:model Model/Product -a
create migration ,factory and resource controller
php artisan make:model Model/Review -a
-
add product table
-
add review table
-
appseviceProvider.php add this line
`use Illuminate\Support\Facades\Schema;
public function boot()
{
Schema::defaultStringLength(191);
}`
php artisan migrate