mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
18 lines
288 B
PHP
18 lines
288 B
PHP
<?php
|
|
|
|
namespace Modules\Frontend\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SocialMedia extends Model
|
|
{
|
|
protected $table = 'frontend_social_medias';
|
|
protected $fillable = [
|
|
'name',
|
|
'icon',
|
|
'url',
|
|
'order',
|
|
'active',
|
|
];
|
|
}
|