mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-05 03:16:14 -04:00
17 lines
288 B
PHP
17 lines
288 B
PHP
<?php
|
|
|
|
namespace Modules\RegistrationAgreement\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RegistrationAgreementSetting extends Model
|
|
{
|
|
protected $fillable = [
|
|
'agreement',
|
|
'label',
|
|
'title',
|
|
'pdf',
|
|
'type'
|
|
];
|
|
}
|