Skip to content

Instantly share code, notes, and snippets.

@deleugpn
Created October 28, 2017 18:59
Show Gist options
  • Select an option

  • Save deleugpn/a4c16906bd973bb02c3d12c637c8f9cc to your computer and use it in GitHub Desktop.

Select an option

Save deleugpn/a4c16906bd973bb02c3d12c637c8f9cc to your computer and use it in GitHub Desktop.
<?php
use App\Models\Tenant\Post;
use Faker\Generator as Faker;
$factory->define(Post::class, function (Faker $faker) {
return [
'title' => $faker->sentence,
'body' => $faker->paragraph
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment