Select the first 10 rows - Laravel Eloquent

前端 未结 3 1332
情话喂你
情话喂你 2021-02-01 00:21

So far I have the following model:

class Listing extends Eloquent {
     //Class Logic HERE
}

I want a basic function that retrieves the first

3条回答
  •  攒了一身酷
    2021-02-01 01:05

    The simplest way in laravel 5 is:

    $listings=Listing::take(10)->get();
    
    return view('view.name',compact('listings'));
    

提交回复
热议问题