To install all php dependencies if you have not uploaded vendor folder. To install and update Composer: composer install composer update Usage Commands: Migrate Tables => php artisan migrate Seed Database => php artisan db:seed –class=InitDbSeeder Start Server => php artisan serve Watch Server => yarn watch or npm run watch Other Commands #…
Category: Laravel 11
Laravel Migration Error: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
Problem: SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (Connection: mysql, SQL: alter table `users` add unique `users_email_unique`(`email`)) Sloution: According to the Laravel official, it can be solved quietly easy. Update your /app/Providers/AppServiceProvider.php to contain: use Illuminate\Support\Facades\Schema; /** * Bootstrap any application services. * * @return…