Laravel 5.6 , model name is not found in helper class (N:B: helper class is located in App\Helpers\Helper.php)

The model name is not enough for Laravel to retrieve the right class, it needs the namespace too.
You can try this if all your models are in the App\Modelsnamespace :
public static function getAll($modelName)
{
$modelName = '\App\Models\' . $modelName;
return $modelName::all();
}
But if it is not the cas, you should send the whole name to your helper method like that :
Helper::getAll(\App\Models\User::class);
Helper::getAll(\App\Models\Subfolder\OtherModel::class);
// ...
Let me know if it helped you :)