| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/OfferItem.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class OfferItem extends Model
{
use HasFactory;
protected $table = "offer_items";
protected $fillable = ['offer_id', 'item_id'];
protected $casts = [
'id' => 'integer',
'offer_id' => 'integer',
'item_id' => 'integer',
];
public function offer(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(offer::class, 'offer_id', 'id');
}
public function item(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Item::class, 'item_id', 'id')->withTrashed();
}
}