29 lines
595 B
PHP
29 lines
595 B
PHP
<?php
|
|
|
|
namespace Modules\Subscription\app\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\Subscription\Database\factories\SubscriptionFactory;
|
|
|
|
class Subscription extends Model
|
|
{
|
|
// use HasFactory;
|
|
use SoftDeletes;
|
|
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected $fillable = [
|
|
'uuid',
|
|
'email',
|
|
];
|
|
|
|
protected static function newFactory(): SubscriptionFactory
|
|
{
|
|
//return SubscriptionFactory::new();
|
|
}
|
|
}
|