Example #1
0
 public function attach($key, $value, $model)
 {
     $conf = Model::Config()->firstOrCreate(['key' => $key, 'value' => $value]);
     $conf->attach($model);
 }
Example #2
0
 public function conf($key, $value)
 {
     return Model::Config()->firstOrCreate(['key' => $key, 'value' => $value])->id;
 }