belongsTo(Item::class, 'item_id'); } public function location(): mixed { return $this->belongsTo(Location::class, 'location_id'); } public function user(): mixed { return $this->belongsTo(User::class, 'user_id'); } }