|
|
@ -4,10 +4,12 @@ namespace App\Models; |
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
use Kyslik\ColumnSortable\Sortable; |
|
|
|
|
|
|
|
class Summarie extends Model |
|
|
|
{ |
|
|
|
use HasFactory; |
|
|
|
use HasFactory, Sortable; |
|
|
|
public $timestamps = false; |
|
|
|
protected $primaryKey = 'beer_id'; |
|
|
|
public $sortable = ['name', 'keywords', 'type']; |
|
|
|
} |