Answers for "how to check table exist or not in laravel"

PHP
0

check table exists in db laravel

if (!Schema::hasTable('table_name')) {
    // Code to create table
}
Posted by: Guest on July-15-2020

Code answers related to "how to check table exist or not in laravel"

Browse Popular Code Answers by Language