家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OptionKey.php 351B

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