1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-04-03 13:11:16 +02:00
2021-04-16 03:30:00 +04:30

13 lines
250 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', 'home_message'];
}