Files
elcaribe/desarrollo2/app/Models/AttributeValue.php
2023-08-23 17:33:44 -04:00

14 lines
202 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class AttributeValue extends Model
{
public function attribute() {
return $this->belongsTo(Attribute::class);
}
}