The code you've written has a logical issue because you are chaining Eloquent methods incorrectly. The orderBy and take methods should be used before the get method. The get method retrieves the results and ends the query building process.
$full = Fulls::orderBy('count', 'desc')->take(5)->get();