13 lines
347 B
PHP
Executable File
13 lines
347 B
PHP
Executable File
<?php
|
|
|
|
namespace Webkul\Attribute\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Attribute\Contracts\AttributeOptionTranslation as AttributeOptionTranslationContract;
|
|
|
|
class AttributeOptionTranslation extends Model implements AttributeOptionTranslationContract
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['label'];
|
|
} |