### Laravel Version ^11.0 ### PHP Version ^8.1.0 ### Database Driver & Version _No response_ ### Description In the previous version of Laravel, we could pass a seed to the `shuffle()` method in the collection helper: https://laravel.com/api/10.x/Illuminate/Support/Collection.html#method_shuffle However, in version 11, this method doesn't accept any arguments. https://laravel.com/api/11.x/Illuminate/Support/Collection.html#method_shuffle ### Steps To Reproduce ```php collect([1, 2, 3, 4, 5])->shuffle(123); ``` Expected behavior The result should be the same given the same seed. Current behavior The result is different every time the code is executed.