家政小程序
Ви не можете вибрати більше 25 тем Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OptionValue extends Model
  5. {
  6. public $timestamps = false;
  7. protected $fillable = [
  8. 'value',
  9. 'option_key_id'
  10. ];
  11. public function optionKey () {
  12. return $this->belongsTo('App\Models\OptionKey', 'option_key_id')->withDefault();
  13. }
  14. }