mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-13 23:19:55 -06:00
15 lines
364 B
PHP
15 lines
364 B
PHP
<?php
|
|
|
|
/* @var $factory \Illuminate\Database\Eloquent\Factory */
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\ApplicationImageProof::class, function (Faker $faker) {
|
|
return [
|
|
'application_id' => function () {
|
|
return factory(App\Models\Application::class)->create()->id;
|
|
},
|
|
'image' => $faker->word,
|
|
];
|
|
});
|