Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rand() always returns the same value in a $factory function #72

Closed
naimkhalifa opened this issue Mar 9, 2015 · 1 comment
Closed

rand() always returns the same value in a $factory function #72

naimkhalifa opened this issue Mar 9, 2015 · 1 comment

Comments

@naimkhalifa
Copy link

Considering the following code in my factories.php file:

$factory('App\Event', [

'title' => $faker->sentence(8),
'user_id' => rand(1,10),
'description' => $faker->sentence,
'address' => $faker->address,
'date' => $faker->date,
'time' => $faker->time

]);

When I do 'php artisan db:seed' , I get the same integer value for all events table entries on 'user_id'.

@naimkhalifa
Copy link
Author

Ok, there is an easy workaround with faker:

'user_id' => $faker->randomDigitNotNull

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant