drehimself / laravel-ecommerce-example

Code for YouTube series on building a Laravel E-Commerce application.
https://www.youtube.com/watch?v=o5PWIuDTgxg&list=PLEhEHUEU3x5oPTli631ZX9cxl6cU_sDaR
1.01k stars 585 forks source link

Algolia credentials incorrect. Your products table is NOT seeded correctly. If you are not using Algolia, remove Laravel\Scout\Searchable from App\Product #70

Open Rub-s opened 4 years ago

Rub-s commented 4 years ago

I have this porbleme while running command : php artisan ecommerce:install Capture

I did remove Laravel\Scout\Searchable from App\Product. I don't know why in the migration processe it c'ant find "data_types" table ... Any chance you can put a simple sql export of your tables ?

harounbest commented 4 years ago

i added this `use Illuminate\Support\Facades\Schema;

public function boot() { Schema::defaultStringLength(191); }` to the AppServiceProvider.php

sidor1989 commented 4 years ago

I had same problem. Then added this `use Illuminate\Support\Facades\Schema;

public function boot() { Schema::defaultStringLength(191); }` to the AppServiceProvider.php like describe -- @harounbest

Then i get new error Screenshot_11 Please I need help