How to Check Table is Exists or Not in Laravel?
Laravel provide database migrations using Schema facade. Schema facade have sevaral method like add column, remove column, check if table exists, check if column exists etc.
Example :
Schema::hasTable('YourTableName');