Select the first 10 rows - Laravel Eloquent

前端 未结 3 1326
情话喂你
情话喂你 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'));
    
    0 讨论(0)
  • 2021-02-01 01:09

    First you can use a Paginator. This is as simple as:

    $allUsers = User::paginate(15);
    
    $someUsers = User::where('votes', '>', 100)->paginate(15);
    

    The variables will contain an instance of Paginator class. all of your data will be stored under data key.

    Or you can do something like:

    Old versions Laravel.

    Model::all()->take(10)->get();
    

    Newer version Laravel.

    Model::all()->take(10);
    

    For more reading consider these links:

    • pagination docs
    • passing data to views
    • Eloquent basic usage
    • A cheat sheet
    0 讨论(0)
  • 2021-02-01 01:24

    Another way to do it is using a limit method:

    Listing::limit(10)->get();
    

    This can be useful if you're not trying to implement pagination, but for example, return 10 random rows from a table:

    Listing::inRandomOrder()->limit(10)->get();
    
    0 讨论(0)
提交回复
热议问题