Commit 289c02ab authored by Jakobud's avatar Jakobud

Added documentation for paginate's second optional argument.

Signed-off-by: 's avatarJakobud <jake.e.wilson@gmail.com>
parent 1db67d47
...@@ -22,6 +22,10 @@ Let's walk through a complete example of paginating using the [Fluent Query Buil ...@@ -22,6 +22,10 @@ Let's walk through a complete example of paginating using the [Fluent Query Buil
$orders = DB::table('orders')->paginate($per_page); $orders = DB::table('orders')->paginate($per_page);
You can also pass an optional array of table columns to select in the query:
$orders = DB::table('orders')->paginate($per_page, array('id', 'name', 'created_at'));
#### Display the results in a view: #### Display the results in a view:
<?php foreach ($orders->results as $order): ?> <?php foreach ($orders->results as $order): ?>
...@@ -75,30 +79,30 @@ Sometimes you may need to create a Paginator instance manually, without using th ...@@ -75,30 +79,30 @@ Sometimes you may need to create a Paginator instance manually, without using th
All pagination link elements can be style using CSS classes. Here is an example of the HTML elements generated by the links method: All pagination link elements can be style using CSS classes. Here is an example of the HTML elements generated by the links method:
<div class="pagination"> <div class="pagination">
<a href="foo" class="previous_page">Previous</a> <a href="foo" class="previous_page">Previous</a>
<a href="foo">1</a> <a href="foo">1</a>
<a href="foo">2</a> <a href="foo">2</a>
<span class="dots">...</span> <span class="dots">...</span>
<a href="foo">11</a> <a href="foo">11</a>
<a href="foo">12</a> <a href="foo">12</a>
<span class="current">13</span> <span class="current">13</span>
<a href="foo">14</a> <a href="foo">14</a>
<a href="foo">15</a> <a href="foo">15</a>
<span class="dots">...</span> <span class="dots">...</span>
<a href="foo">25</a> <a href="foo">25</a>
<a href="foo">26</a> <a href="foo">26</a>
<a href="foo" class="next_page">Next</a> <a href="foo" class="next_page">Next</a>
</div> </div>
When you are on the first page of results, the "Previous" link will be disabled. Likewise, the "Next" link will be disabled when you are on the last page of results. The generated HTML will look like this: When you are on the first page of results, the "Previous" link will be disabled. Likewise, the "Next" link will be disabled when you are on the last page of results. The generated HTML will look like this:
<span class="disabled prev_page">Previous</span> <span class="disabled prev_page">Previous</span>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment