ctrlpanel/app/Models/UsefulLink.php
AVMG20 690abe03ba Auto stash before revert of "Merge remote-tracking branch 'origin/development' into development"
Added all the plugins from adminlite, added usefulllinks tab
2021-06-10 23:29:25 +02:00

21 lines
328 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UsefulLink extends Model
{
use HasFactory;
protected $table = 'useful_links';
protected $fillable = [
'icon',
'title',
'link',
'description'
];
}