Bienvenido a proyecto online, en este lugar encontrarás la respuesta de lo que necesitas.
Ejemplo 1: laravel updateOrCreate
// If there's a flight from Oakland to San Diego, set the price to $99.// If no matching model exists, create one.
$flight = AppFlight::updateOrCreate(['departure'=>'Oakland','destination'=>'San Diego'],['price'=>99,'discounted'=>1]);
Ejemplo 2: laravel crear o actualizar
// If there's a flight from Oakland to San Diego, set the price to $99.// If no matching model exists, create one.
$flight = AppModelsFlight::updateOrCreate(['departure'=>'Oakland','destination'=>'San Diego'],['price'=>99,'discounted'=>1]);
Ejemplo 3: elocuente firstOrCreate
firstOrCreate() will automatically create a new entry in the databaseif there isnotmatch found. Otherwise it will give you the matched item.
firstOrNew() will give you a new model instance toworkwithifnotmatch was found, but will only be saved to the databasewhen you explicitly do so (calling save()on the model). Otherwise it will give you the matched item.
Ejemplo 4: crea un nuevo registro a través del modelo en laravel
$userData = array('username'=>'Me','email'=>'[email protected]');User::create($userData);
Reseñas y calificaciones de la guía
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)