mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-01-09 08:43:22 +01:00
951df23c91
Update to Laravel 9 Commit for the upcoming from-end update.
14 lines
262 B
PHP
14 lines
262 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LinkType extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['typename', 'title', 'description', 'icon', 'params'];
|
|
}
|