18 lines
345 B
PHP
18 lines
345 B
PHP
<?php
|
|
|
|
namespace Database\Factories\Website;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ProjectCategoryFactory extends Factory
|
|
{
|
|
protected $model = \App\Models\Website\ProjectCategory::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'image' => $this->faker->imageUrl(),
|
|
];
|
|
}
|
|
}
|