mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-09 21:19:22 -06:00
23 lines
503 B
PHP
23 lines
503 B
PHP
<?php
|
|
|
|
/* @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Application;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ApplicationImageProofFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'application_id' => fn () => Application::factory()->create()->id,
|
|
'image' => $this->faker->word(),
|
|
];
|
|
}
|
|
}
|