Add tags to dummy bookmarks

This commit is contained in:
Jonny Barnes 2017-10-11 16:28:56 +01:00
parent 8f531d9055
commit abe5063c4a
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,9 @@
<?php
use Faker\Generator as Faker;
$factory->define(App\Tag::class, function (Faker $faker) {
return [
'tag' => $faker->word,
];
});