laravel find by field

Solutions on MaxInterview for laravel find by field by the best coders in the world

showing results for - "laravel find by field"
Blair
18 Aug 2019
1// Retrieve a model by its primary key...
2$flight = App\Flight::find(1);
3
4// Retrieve the first model matching the query constraints...
5$flight = App\Flight::where('active', 1)->first();
6
7// Shorthand for retrieving the first model matching the query constraints...
8$flight = App\Flight::firstWhere('active', 1);
Mordecai
13 Jul 2018
1Model::firstOrFail()->where('something', $value)
2