Matt Burchett
64cb718ac4
Some checks reported errors
continuous-integration/drone/push Build was killed
16 lines
272 B
PHP
16 lines
272 B
PHP
<?php
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Kyslik\ColumnSortable\Sortable;
|
|
|
|
class Ships extends Model
|
|
{
|
|
use Sortable;
|
|
public $sortable = ['shipId', 'shipName', 'shipOwner', 'shipType'];
|
|
protected $casts = ['id' => 'string'];
|
|
}
|