mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
14 lines
230 B
PHP
14 lines
230 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UrlLabel extends Model
|
|
{
|
|
protected $table = 'studio_url_labels';
|
|
protected $fillable = [
|
|
'label',
|
|
];
|
|
}
|