mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-29 08:16:43 -04:00
19 lines
368 B
PHP
19 lines
368 B
PHP
<?php
|
|
|
|
namespace Modules\FrontendCMS\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Pricing extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected static function newFactory()
|
|
{
|
|
return \Modules\FrontendCMS\Database\factories\PricingFactory::new();
|
|
}
|
|
}
|