9146c4a68f
* Add `name` attribute * Pre-StyleFix * Update UserFieldValue.php * Used optional() * Update Pirep.php * Update Flight.php * Update User.php
46 lines
809 B
PHP
46 lines
809 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
|
|
/**
|
|
* @property string name
|
|
* @property string value
|
|
* @property UserField field
|
|
* @property User user
|
|
*/
|
|
class UserFieldValue extends Model
|
|
{
|
|
public $table = 'user_field_values';
|
|
|
|
protected $fillable = [
|
|
'user_field_id',
|
|
'user_id',
|
|
'value',
|
|
];
|
|
|
|
public static $rules = [];
|
|
|
|
/**
|
|
* Return related field's name along with field values
|
|
*/
|
|
public function getNameAttribute(): string
|
|
{
|
|
return optional($this->field)->name;
|
|
}
|
|
|
|
/**
|
|
* Foreign Keys
|
|
*/
|
|
public function field()
|
|
{
|
|
return $this->belongsTo(UserField::class, 'user_field_id');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
}
|