| Current Path : /home/users/unlimited/www/dealnest.codeskitter.site/app/Models/ |
| Current File : /home/users/unlimited/www/dealnest.codeskitter.site/app/Models/VerifyCustomerFormValue.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class VerifyCustomerFormValue extends Model
{
use HasFactory;
protected $fillable = [
'verify_customer_form_id',
'value',
'created_at',
'updated_at',
];
/**
* Get the Form Field that owns the VerifyCustomerFormValue
*
*/
public function verify_customer_form()
{
return $this->belongsTo(VerifyCustomerForm::class, 'verify_customer_form_id');
}
}