Files
alliance-services/app/Models/Finance/MiningTax.php
2026-03-10 02:10:28 -05:00

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',
];
}