Skip to content

Instantly share code, notes, and snippets.

@maxheckel
Created March 11, 2017 16:53
Show Gist options
  • Select an option

  • Save maxheckel/e8633c01725af0c3a09b0ef284dc8f5a to your computer and use it in GitHub Desktop.

Select an option

Save maxheckel/e8633c01725af0c3a09b0ef284dc8f5a to your computer and use it in GitHub Desktop.
<?php
$factory->define(\App\Product::class, function(\Faker\Generator $faker){
return [
'title'=>$faker->word,
'description'=>$faker->paragraph,
'price'=>$faker->randomFloat(),
'available'=>$faker->boolean()
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment