Files
w4rpservices/app/Models/MiningTax/Observer.php
2021-04-27 00:49:49 +09:00

32 lines
560 B
PHP

<?php
namespace App\Models\MiningTax;
use Illuminate\Database\Eloquent\Model;
class Observer extends Model
{
//Table Name
protected $table = 'alliance_mining_tax_observers';
//Primary Key
public $primaryKey = 'id';
//Timestamps
public $timestamps = true;
/**
* Items which are mass assignable
*
* @var array
*/
protected $fillable = [
'last_updated',
'observer_id',
'observer_type',
'observer_name',
'solar_system_name',
'solar_system_id',
];
}