You've already forked Atomcms-edit
21 lines
543 B
PHP
Executable File
21 lines
543 B
PHP
Executable File
<?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;
|
|
}
|