love_php/app/Models/Server/ActivityMeeting.php

14 lines
347 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Server;
use Illuminate\Database\Eloquent\Model;
class ActivityMeeting extends Model
{
protected $fillable = ['activity_id','total_desk','menu','back_images','desk_images','start_desk','user_number','sign_images','qr_code','qr_code_url'];
protected $guarded = [];
protected $table="activity_meeting";
}