Quel est le raccourci pour insérer un nouvel enregistrement ou mettre à jour s'il existe? <?php $shopOwner = ShopMeta::where('shopId', '=', $theID) ->where('metadataKey', '=', 2001)->first(); if ($shopOwner == null) { // Insert new record into database } else { // Update the existing...