User::query() ->withCount([ 'orangePills', ]) ->orderByDesc('orange_pills_count') ->get(), ])->layout('layouts.app', [ 'SEOData' => new SEOData( title: __('Highscore Table'), description: __('Hall of fame of our honorable plebs'), image: asset('img/highscore_table_screenshot.png'), ) ]); } public function openModal($id) { $this->modal = User::query() ->with([ 'orangePills', 'reputations', ]) ->where('id', $id) ->first(); $this->viewingModal = true; } }