ctrlpanel/app/Models/UsefulLink.php
RamonRobben b32352e925
Custom useful links via database / command (#41)
* Small change to the test command

* Custom useful links via database and command
2021-06-10 00:16:34 +02:00

21 lines
324 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',
'message'
];
}