laravel eloquent get all
// To Get All
ModelClassName::where('Active','=',1)->get();
laravel eloquent get all
// To Get All
ModelClassName::where('Active','=',1)->get();
laravel eloquent get all records where
// Get all rows from Eloquent model
Model::get();
//Get all the cars
$cars = App\Models\Cars::get();
// Get all rows from Eloquent model where column matches the given value
Model::where('column', {value})->get();
//Get all the blue cars
$blue_cars = App\Models\Cars::where('color', 'blue')->get();
//Get all the green cars
$looking_for = 'green';
$green_cars = App\Models\Cars::where('color', $looking_for)->get();
// Get all rows from Eloquent model where column is matched conditionally
Model::where('column', {condition}, {value})->get();
//Get all the antique cars
$antiques = App\Models\Cars::where('year', '<=', 2000)->get();
// Get all rows from Eloquent model with multiple where conditions
//Get all the green antique cars
$green_antiques = App\Models\Cars::where(
[
['color', 'green'],
['year', '<=', 2000],
]
)->get();
// For very large data sets use cursor() rather than get();
Model::where('column', {value})->cursor();
// Or limits
Model::where('column', {value})->limit({n})->get();
// Get the first 10 green cars
$some_green_cars =
App\Models\Cars::where('color', 'green')->limit(10)->get();
laravel eloquent get all where in
// Get All Where in condition
$array = [1,2,3,4,5];
ModelClassName::whereIn('columnName',$array)->get();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us