30 lines
483 B
PHP
30 lines
483 B
PHP
<?php
|
|
|
|
namespace App\Models\Finance;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MiningTax extends Model
|
|
{
|
|
// Table Name
|
|
protected $table = 'mining_tax';
|
|
|
|
//Primary Key
|
|
public $primaryKey = 'id';
|
|
|
|
// Timestamps
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'character_id',
|
|
'character_name',
|
|
'month_end',
|
|
'amount',
|
|
];
|
|
}
|