| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Webkul\Product\Models;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- use Webkul\Product\Contracts\ProductDownloadableLinkTranslation as ProductDownloadableLinkTranslationContract;
- use Webkul\Product\Database\Factories\ProductDownloadableLinkTranslationFactory;
- class ProductDownloadableLinkTranslation extends Model implements ProductDownloadableLinkTranslationContract
- {
- use HasFactory;
- public $timestamps = false;
- protected $fillable = ['title'];
- /**
- * Create a new factory instance for the model.
- */
- protected static function newFactory(): Factory
- {
- return ProductDownloadableLinkTranslationFactory::new();
- }
- }
|