Skip to main content

Posts

Showing posts from December, 2018

Error user email lenth not specified

Set up Database Migration Default String Length To set up the default string length for the database migration, go to   app/Providers/AppServiceProvider.php and update the code with the following:   use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Schema; // public function boot() { Schema::defaultStringLength(191); }    

Laravel Artisan Command

1) Clear Cache facade value: php artisan cache:clear 2) Clear Route cache: php artisan route:cache 3) Clear View cache: php artisan view:clear 4) Clear Config cache: php artisan config:cache 5) Key Generate php artisan key:generate