HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/app/Models/
Upload File :
Current File : //home/cardxfeb/public_html/app/Models/PlanCustomField.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class PlanCustomField extends Model
{
    use HasFactory;

    protected $table = 'plan_custom_fields';
    protected $fillable = ['plan_id', 'custom_vcard_number', 'custom_vcard_price'];

    public function plan()
    {
        return $this->belongsTo(Plan::class);
    }
}