Laravel Two-Step Registration
Laravel Two-Step Registration: Optional Fields for Country and City Imagine a project where you need to have two-step registration process, with some optional fields in the second step. Let’s build …
By Nikunj Joshi
Laravel Two-Step Registration: Optional Fields for Country and City Imagine a project where you need to have two-step registration process, with some optional fields in the second step. Let’s build …
Create Controller, Model and Migration using one artisan command in Laravel Artisan is the command-line interface included with Laravel. It provides a number of helpful commands that can assist you …
Read More “Laravel Create Controller, Model and Migration in one Artisan Command”
Laravel 5: Specified key was too long error [Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table …
Read More “Laravel Migration Specified key was too long error”
Adding foreign keys with Migrations Laravel really excels at facilitating deft management and navigation of table relations, but you’ll need to understand how to properly configure these relationships before taking …
How to create migration file with Make:model command Recently I’ve found out a nice little way to speed up generating of database stuff. I used to use make:migration and make:model …