allow null laravel migration code example
Example 1: migrations required field laravel
$table->string('foo')->nullable(false)->change();
Example 2: php artisan see last migration
php artisan migrate:status
$table->string('foo')->nullable(false)->change();
php artisan migrate:status