Files
w4rpservices/app/Models/SRP/Ship.php
2019-06-28 22:55:53 -05:00

26 lines
397 B
PHP

<?php
namespace App\Models\SRP;
use Illuminate\Database\Eloquent\Model;
class Ship extends Model
{
//Table Name
protected $table = 'srp_ships';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = true;
//Fillable Items
protected $fillable = [
'ship_type',
'character_id',
'zkillboard',
'notes',
];
}