Check Table Exists Or Not In Laravel Migration Let’s create a users table only if the users table doesn’t exist in the database. <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { /* * If users table does not exists then create * Your newly appended changes won't be added if table already exists */ ...