ProductDownloadableLinkTranslation.php 783 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Webkul\Product\Models;
  3. use Illuminate\Database\Eloquent\Factories\Factory;
  4. use Illuminate\Database\Eloquent\Factories\HasFactory;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Webkul\Product\Contracts\ProductDownloadableLinkTranslation as ProductDownloadableLinkTranslationContract;
  7. use Webkul\Product\Database\Factories\ProductDownloadableLinkTranslationFactory;
  8. class ProductDownloadableLinkTranslation extends Model implements ProductDownloadableLinkTranslationContract
  9. {
  10. use HasFactory;
  11. public $timestamps = false;
  12. protected $fillable = ['title'];
  13. /**
  14. * Create a new factory instance for the model.
  15. */
  16. protected static function newFactory(): Factory
  17. {
  18. return ProductDownloadableLinkTranslationFactory::new();
  19. }
  20. }