create table nullable laravel code example
Example 1: laravel migration
$table->string('name', 100);
Example 2: create migration laravel
php artisan make:Model Product -m -c --resource
$table->string('name', 100);
php artisan make:Model Product -m -c --resource