mirror of https://github.com/pixelfed/pixelfed.git
20 lines
361 B
PHP
20 lines
361 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
class CuratedRegisterTemplate extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'name', 'description', 'content', 'is_active', 'order',
|
||
|
];
|
||
|
|
||
|
protected $casts = [
|
||
|
'is_active' => 'boolean',
|
||
|
];
|
||
|
}
|