Answers for "update table if exists laravel"

PHP
1

check table exists in db laravel

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

laravel update if exists or create

$flight = AppFlight::updateOrCreate(
    ['departure' => 'Oakland', 'destination' => 'San Diego'],
    ['price' => 99]
);
Posted by: Guest on June-20-2021

Code answers related to "update table if exists laravel"

Browse Popular Code Answers by Language