In my PagesRepository.php I created a function
use Ramsey\Uuid\Uuid;
function generateUid()
{
return Uuid::uuid4();
}
Now I want to use this function in my PagesController.php:
$unique_id = generateUid();
But I get the error message:
Attempted to call function "generateUid" from namespace "App\Controller".