'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; public function scopeLatestFirst($qurey) { return $qurey->orderByDesc('created_at')->orderByDesc('id'); } public function product(): BelongsTo { return $this->belongsTo(Product::class); } }