love_php/app/Model/Server/CommunityActivitySeat.php

12 lines
220 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Model\Server;
use App\Models\Base;
use Illuminate\Database\Eloquent\Model;
class CommunityActivitySeat extends Model
{
public $fillable = ['activity_id', 'name', 'mobile', 'number', 'hall'];
}