Slide 9
              Slide 9 text
              
                  static function listing($overrides = [])
{
$faker = Faker\Factory::create(‘nl_BE’);
$listing = new Listing([
‘id’ => $faker->numberBetween(100000, 200000),
‘price’ => $faker->randomFloat(2),
‘agencyUrl => $faker->url(),
‘description’ => $faker->text(),
]);
}
FACTORIES & FAKER