This commit is contained in:
shibafu
2020-07-24 13:56:06 +09:00
parent d58afc0324
commit e2ba3581f9
5 changed files with 180 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\CheckinWebhook;
use Faker\Generator as Faker;
$factory->define(CheckinWebhook::class, function (Faker $faker) {
return [
'name' => 'example'
];
});