BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
app
/
Models
/
Finance
📤 Upload
📝 New File
📁 New Folder
Close
Editing: AiChatModelPlan.php
<?php namespace App\Models\Finance; use App\Domains\Entity\Models\Entity; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\Pivot; class AiChatModelPlan extends Pivot { protected $table = 'ai_chat_model_plans'; public $timestamps = false; protected $fillable = [ 'entity_id', 'plan_id', ]; public function entity(): BelongsTo { return $this->belongsTo(Entity::class); } }
Save
Cancel