esit exits table migration laravel code example
Example 1: laravel has table
Schema::hasTable('mytable');
Example 2: laravel migration
$table->string('name', 100);
Schema::hasTable('mytable');
$table->string('name', 100);