Skip to content

Instantly share code, notes, and snippets.

@earth774
Created April 28, 2019 07:54
Show Gist options
  • Save earth774/d565dde65c5735845888517b45f89168 to your computer and use it in GitHub Desktop.
Save earth774/d565dde65c5735845888517b45f89168 to your computer and use it in GitHub Desktop.
Fake Data Factory
<?php
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding your
| database. Just tell the factory how a default model should look.
|
*/
$factory->define(App\Users::class, function (Faker\Generator $faker) {
return [
'fullname' => $faker->name,
'lastname' => $faker->name,
'age' => '24',
'tel' => $faker->phoneNumber,
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment