Answers for "laravel find and delete"

PHP
1

laravel delete

DB::table('users')->where('votes', '>', 100)->delete();
Posted by: Guest on March-11-2021
0

Laravel Delete

Flight::destroy(1);

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

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

Flight::destroy(collect([1, 2, 3]));
Posted by: Guest on April-27-2021
0

Laravel eloquent delete

use App\Models\Flight;

$flight = Flight::find(1);

$flight->delete();
Posted by: Guest on July-24-2021
1

laravel model::query

// Eloquent's Model::query() returns the query builder

Model::where()->get();
// Is the same as 
Model::query()->where()->get();

Model::query();
// Can be useful to add query conditions based on certain requirements

// See https://stackoverflow.com/questions/51517203/what-is-the-meaning-of-eloquents-modelquery
Posted by: Guest on October-06-2020

Code answers related to "laravel find and delete"

Browse Popular Code Answers by Language