App\Http\Controllers\LastFmController::getPage PHP Method

getPage() public method

Return all tweets to the LastFM API dashboard
public getPage ( ) : mixed
return mixed
    public function getPage()
    {
        $details = $this->getArtistInfo();
        $albums = array_slice($this->getTopAlbums(), 0, 4);
        $tracks = array_slice($this->getTopTracks(), 0, 10);
        return view('api.lastfm')->withDetails($details)->withAlbums($albums)->withTracks($tracks);
    }