Answers for "db table laravl check if the recrod exists"

PHP
1

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 "db table laravl check if the recrod exists"

Browse Popular Code Answers by Language