AttributeValue.php 201 B

123456789101112
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AttributeValue extends Model
  5. {
  6. public function attribute() {
  7. return $this->belongsTo(Attribute::class);
  8. }
  9. }