📜  laravel 创建或更新 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:40.086000             🧑  作者: Mango

代码示例6
// If there's a flight from Oakland to San Diego, set the price to $99.
// If no matching model exists, create one.
$flight = App\Models\Flight::updateOrCreate(
    ['departure' => 'Oakland', 'destination' => 'San Diego'],
    ['price' => 99, 'discounted' => 1]
);