<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Carbon;
/**
* Class MostDemanded
*
* @package App\Models
*
* @property int $id
* @property string $banner
* @property int $product_id
* @property int $status
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property-read Product $product
*/
class MostDemanded extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['banner', 'product_id', 'status'];
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
'id' => 'integer',
'product_id' => 'integer',
'status' => 'integer',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
/**
* Get the related product for the most demanded item.
*
* @return BelongsTo
*/
public function product(): BelongsTo
{
return $this->belongsTo(Product::class);
}
}