Answers for "value exists in table 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
0

laravel check if record exists

if (DB::table('orders')->where('finalized', 1)->exists()) {
    // ...
}
 
if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
    // ...
}
Posted by: Guest on February-23-2022

Code answers related to "value exists in table laravel"

Browse Popular Code Answers by Language