2018-07-11 05:41:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Attribute\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-02-18 07:30:40 +00:00
|
|
|
use Webkul\Attribute\Contracts\AttributeOptionTranslation as AttributeOptionTranslationContract;
|
2018-07-11 05:41:27 +00:00
|
|
|
|
2019-02-18 07:30:40 +00:00
|
|
|
class AttributeOptionTranslation extends Model implements AttributeOptionTranslationContract
|
2018-07-11 05:41:27 +00:00
|
|
|
{
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
|
|
|
|
|
protected $fillable = ['label'];
|
|
|
|
|
}
|