SEPTEMBER 16, 2017
To make sure your Laravel application doesn't break when you are applying changes to your database, it's a good practice to check whether a table exists or not before doing any calls.
\Schema::hasTable('users');
CodeLaravel