/**
  * Override the next button text.
  * @param  string $text
  * @return string
  */
 public function getNextButton($text = '')
 {
     return parent::getNextButton('<span class="fa fa-long-arrow-right"></span>');
 }
 public function __construct(Paginator $paginator, $template = null)
 {
     parent::__construct($paginator, null);
     $this->template = $template;
 }