This commit is contained in:
shibafu
2020-08-12 22:05:49 +09:00
parent b71b7e5cb2
commit 45fd630e1a
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\ContentProvider;
use Faker\Generator as Faker;
$factory->define(ContentProvider::class, function (Faker $faker) {
return [
'host' => 'example.com',
'robots' => null,
'robots_cached_at' => now(),
];
});