13 lines
375 B
PHP
13 lines
375 B
PHP
<?php
|
|
|
|
namespace Webkul\Product\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Product\Contracts\ProductDownloadableLinkTranslation as ProductDownloadableLinkTranslationContract;
|
|
|
|
class ProductDownloadableLinkTranslation extends Model implements ProductDownloadableLinkTranslationContract
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['title'];
|
|
} |