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

32 lines
521 B
PHP

<?php
namespace App\Models\Finance;
use Illuminate\Database\Eloquent\Model;
class MoonMiningTax extends Model
{
// Table Name
protected $table = 'moon_mining_tax';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'moon_id',
'name',
'worth',
'tax_bracket',
'tax_amount',
'rental_end',
];
}