love_php/app/Models/Match/EarningAccount.php

13 lines
219 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Match;
use Illuminate\Database\Eloquent\Model;
class EarningAccount extends Model
{
protected $table = "earning_accounts";
protected $fillable = [];
protected $guarded = [];
}