????
Current Path : /home/thenclexdoctor.com/public_html/app/Models/ |
Current File : /home/thenclexdoctor.com/public_html/app/Models/CartDiscount.php |
<?php namespace App\Models; use Astrotomic\Translatable\Contracts\Translatable as TranslatableContract; use Astrotomic\Translatable\Translatable; use Illuminate\Database\Eloquent\Model; class CartDiscount extends Model implements TranslatableContract { use Translatable; protected $table = "cart_discounts"; public $timestamps = false; protected $dateFormat = 'U'; protected $guarded = ['id']; public $translatedAttributes = ['title', 'subtitle']; public function getTitleAttribute() { return getTranslateAttributeValue($this, 'title'); } public function getSubtitleAttribute() { return getTranslateAttributeValue($this, 'subtitle'); } public function discount() { return $this->belongsTo(Discount::class, 'discount_id', 'id'); } }
Sorry, this page is not available...