mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
13 lines
159 B
PHP
13 lines
159 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Page extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $guarded = ['id'];
|
|
}
|