isPaginationable() public method

Check if Datatables allow pagination.
public isPaginationable ( ) : boolean
return boolean
Exemplo n.º 1
0
 /**
  * Apply pagination.
  *
  * @return void
  */
 public function paginate()
 {
     if ($this->request->isPaginationable()) {
         $this->paging();
     }
 }
 /**
  * Apply pagination.
  *
  * @return void
  */
 protected function paginate()
 {
     if ($this->request->isPaginationable() && !$this->skipPaging) {
         $this->paging();
     }
 }