“Zaktualizuj lub wstaw w Laravel” Kod odpowiedzi

Aktualizacja Laravel z zapytania

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);
Alberto Peripolli

Laravel, gdzie zapytanie o aktualizację

DB::table('users')
        ->where('id', $id)
        ->update([
            'status'     => 1
        ]);
Snippets

Zaktualizuj lub utwórz Laravel

$user = User::updateOrCreate(['name' => request()->name], [ 
    'foo' => request()->foo
]);
Fragile Fish

Laravel Utwórz lub aktualizuj

// 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]
);
Embarrassed Eel

Zaktualizuj lub wstaw w Laravel

DB::table('users')
    ->updateOrInsert(
        ['email' => '[email protected]', 'name' => 'John'],
        ['votes' => '2']
    );
Lonely Lyrebird

Laravel Znajdź zapytanie

return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();
Suhail Khan

Odpowiedzi podobne do “Zaktualizuj lub wstaw w Laravel”

Pytania podobne do “Zaktualizuj lub wstaw w Laravel”

Więcej pokrewnych odpowiedzi na “Zaktualizuj lub wstaw w Laravel” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu