You've already forked Atomcms-edit
Initial commit
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models\Help;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|WebsiteHelpCenterCategory orderBy($column, $direction = 'asc')
|
||||
* @method static \Illuminate\Database\Eloquent\Builder<static>|WebsiteHelpCenterCategory get($columns = ['*'])
|
||||
*/
|
||||
class WebsiteHelpCenterCategory extends Model
|
||||
{
|
||||
#[\Override]
|
||||
protected $guarded = ['id', 'created_at', 'updated_at', 'name', 'icon'];
|
||||
|
||||
#[\Override]
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user