CartRuleTranslation.php 318 B

12345678910111213
  1. <?php
  2. namespace Webkul\CartRule\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Webkul\CartRule\Contracts\CartRuleTranslation as CartRuleTranslationContract;
  5. class CartRuleTranslation extends Model implements CartRuleTranslationContract
  6. {
  7. public $timestamps = false;
  8. protected $fillable = ['label'];
  9. }