You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is in issue with Laravel 6 and over. The str_random() is not available anymore into laravel. We must add the following into PDFMerger.php use Str;
and change str_random(16) to Str::random(16)
There is in issue with Laravel 6 and over. The str_random() is not available anymore into laravel. We must add the following into PDFMerger.php
use Str;
and change
str_random(16)
toStr::random(16)
We also need to add Laravel\Helpers to composer.
https://laravel.com/docs/6.x/upgrade#helpers
The text was updated successfully, but these errors were encountered: