laravel-ecommerce-example
laravel-ecommerce-example copied to clipboard
How can i fix this probleme
trafficstars

The issues is that it is making reference to the table that has not created in the database Goto your env and add this ALGOLIA_APP_ID=YourApplicationID ALGOLIA_SECRET=YourAPIKey
after Run => php artisan migrate Run=>php artisan ecommerce:install
You might encounter below issues

To Solve it To go App/Provider/AppServiceProvider.php add this use Illuminate\Support\Facades\Schema;
public function boot() { Schema::defaultStringLength(191); }
#45 This is the solution