����JFIF���������
1#@!#!123s
D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nc6d095
/
study.helpmanscs.com
/
app
/
Models
/
Filename :
UserFormField.php
back
Copy
<?php namespace App\Models; use App\User; use Astrotomic\Translatable\Contracts\Translatable as TranslatableContract; use Astrotomic\Translatable\Translatable; use Illuminate\Database\Eloquent\Model; class UserFormField extends Model { protected $table = "user_form_fields"; public $timestamps = false; protected $dateFormat = 'U'; protected $guarded = ['id']; public function field() { return $this->belongsTo(FormField::class, 'form_field_id', 'id'); } }