what is the field list in laravel 5.8 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