DIR: /proc/1784574/task/1784574/cwd/app/Models/ |
Current File : //proc/1784574/task/1784574/cwd/app/Models/AttributeValue.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class AttributeValue extends Model { protected $fillable = [ 'attribute_id', 'value', 'color_code' ]; public function attribute() { return $this->belongsTo(Attribute::class); } } |