You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WebsiteWriteableBox extends Model
|
||||
{
|
||||
#[\Override]
|
||||
protected $guarded = ['id', 'created_at', 'updated_at', 'user_id'];
|
||||
|
||||
#[\Override]
|
||||
public $timestamps = true;
|
||||
}
|
||||
Reference in New Issue
Block a user