Files
cheerstothe_season_2.0/app/Models/SubscriptionProducts.php
sayliraut 8b347013b7 changes
2024-08-14 13:35:44 +05:30

32 lines
531 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SubscriptionProducts extends Model
{
use HasFactory;
protected $table = 'subscription_products';
protected $guarded = [];
protected $fillable =[
'id',
'product_name',
'product_value',
'product_details',
'stripe_product_id',
'stripe_price_id',
'is_active',
'deleted_at',
'created_by',
'modified_by',
'created_at',
'updated_at'
];
}