Category: Application Development
Composer and other Commands for Laravel Project (Usage Command)
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 #…
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…
Project Documentation Templates
# Project Level Documentation Template 1 Project Initiation Business Case Project Charter PID Document Project Scope 2 Project Planning Gantt Chart SWOT Analysis Action Plan Template 3 Project Execution Execution Template Requirement Tracability Implementation Test Case Template 4 Project Tracking RACI Excel Template GAP Analysis Template Root Cause Analysis RAID Log Excel Execution Tracking 5…