for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use IonGhitun\MysqlEncryption\Models\BaseModel;
/**
* Class Model
*
* Each model should extend this class.
* @package App\Models
*/
class Model extends BaseModel
{
/** @var array */
protected $visible = [];
protected $sortable = [];
protected $searchable = [];
protected $filterable = [];
* Get sortable columns
* @return array
public function getSortable()
return $this->sortable;
}
* Get searchable columns
public function getSearchable()
return $this->searchable;
* Get filterable columns
public function getFilterable()