$model = App\Flight::findOrFail(1); $model = App\Flight::where('legs', '>', 100)->firstOrFail();
Route::get('/api/flights/{id}', function ($id) { return App\Flight::findOrFail($id); });
Clickable & Draggable!