2021-04-06 22:03:54 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Kyslik\ColumnSortable\Sortable;
|
|
|
|
|
|
|
|
class Ships extends Model
|
|
|
|
{
|
|
|
|
use Sortable;
|
2021-04-09 01:35:39 -07:00
|
|
|
public $sortable = ['shipId', 'shipName', 'shipOwner', 'shipType', 'shipClass'];
|
2021-04-06 22:03:54 -07:00
|
|
|
protected $casts = ['id' => 'string'];
|
|
|
|
}
|