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.
16 lines
263 B
PHP
16 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
class Link extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['link', 'title', 'button_id', 'type_params', 'typename'];
|
|
|
|
}
|