if you join your model through your controller before returning the view do:
abstract class YourController extends \BaseController {
public function index() {
$modelManager = new yourModel();
$pagination = $modelManager->getTransactions($accountCode)->links();
return View::make('yourView', array('pagination' => $pagination));
}
}
and use {{$pagination}}in your view.
source
share