mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-13 06:10:16 +08:00
14 lines
201 B
PHP
14 lines
201 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Item extends Model
|
|
{
|
|
//
|
|
protected $fillable = [
|
|
'title', 'url', 'colour', 'icon', 'description', 'pinned'
|
|
];
|
|
}
|