mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-01-08 08:12:46 +01:00
4e78b1a58f
Added option to disable registration.
13 lines
262 B
PHP
Executable File
13 lines
262 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Page extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $fillable = ['terms', 'privacy', 'contact', 'register', 'home_message'];
|
|
}
|