Skip to content

Instantly share code, notes, and snippets.

@alwarren
alwarren / PerPageTrait.php
Last active April 22, 2016 08:56
A Laravel 5.2 trait that stores a value in the session that can be used with a form select to set the per page value for a length aware paginator.
<?php
namespace App\Traits;
use Illuminate\Http\Request;
/**
* A Laravel 5.2 trait that stores a value in the session that can be used with
* a form select to set the per page value for a length aware paginator.
*