mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 03:06:03 -05:00
26 lines
399 B
PHP
26 lines
399 B
PHP
<?php
|
|
|
|
namespace App\Models\Game;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @mixin IdeHelperPrestigeRewardItem
|
|
*/
|
|
class PrestigeRewardItem extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'prestige_rewards';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'catalog_item_id',
|
|
'amount'
|
|
];
|
|
|
|
|
|
}
|