laravel-ecommerce-example icon indicating copy to clipboard operation
laravel-ecommerce-example copied to clipboard

How can i fix this probleme

Open hamzahlb opened this issue 6 years ago • 2 comments
trafficstars

1

hamzahlb avatar Apr 09 '19 15:04 hamzahlb

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 laravel-key-too-long

To Solve it To go App/Provider/AppServiceProvider.php add this use Illuminate\Support\Facades\Schema;

public function boot() { Schema::defaultStringLength(191); }

donchi4all avatar Apr 22 '19 06:04 donchi4all

#45 This is the solution

techguydev avatar Aug 09 '19 13:08 techguydev