Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/dealnest.codeskitter.site/app/Models/
Upload File :
Current File : /home/users/unlimited/www/dealnest.codeskitter.site/app/Models/VerifyCustomerForm.php

<?php

namespace App\Models;

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

class VerifyCustomerForm extends Model
{
    use HasFactory;
    protected $fillable = [
        'name',
        'field_type',
        'rank'
    ];


    /**
     * Get all of the form_fields_values for the VerifyCustomerForm
     */
    public function form_fields_values()
    {
        return $this->hasMany(VerifyCustomerFormValue::class, 'verify_customer_form_id', 'id');
    }
}