Files
cheerstothe_season_2.0/app/Models/SubscriptionProducts.php

31 lines
537 B
PHP
Raw Normal View History

2024-07-02 19:20:18 +05:30
<?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 = [];
2024-07-09 13:39:11 +05:30
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'
];
2024-07-02 19:20:18 +05:30
}