“Laravel Usuń” Kod odpowiedzi

Laravel Usuń

DB::table('users')->where('votes', '>', 100)->delete();
unmeego

Jak tworzyć model w Laravel

php artisan make:model Flight

Laravel Eloquent Delete

use App\Models\Flight;

$flight = Flight::find(1);

$flight->delete();
Cooperative Crab

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

Larave Soft usuwa

Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});
Alberto Peripolli

Laravel Usuń

Flight::destroy(1);

Flight::destroy(1, 2, 3);

Flight::destroy([1, 2, 3]);

Flight::destroy(collect([1, 2, 3]));
Magnificent Mink

Odpowiedzi podobne do “Laravel Usuń”

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

Przeglądaj inne języki kodu