mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 02:16:47 -04:00
14 lines
272 B
PHP
14 lines
272 B
PHP
<?php
|
|
|
|
namespace Modules\Setup\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DashboardSetup extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = "dashboard_setup";
|
|
protected $guarded = ['id'];
|
|
}
|