Adding Laravel Project

This commit is contained in:
2021-04-06 22:03:54 -07:00
parent 7b07787d56
commit 4caa32eac3
102 changed files with 52520 additions and 0 deletions

15
app/Models/Ships.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Kyslik\ColumnSortable\Sortable;
class Ships extends Model
{
use Sortable;
public $sortable = ['shipId', 'shipName', 'shipOwner'];
protected $casts = ['id' => 'string'];
}