mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
21 lines
387 B
PHP
Executable File
21 lines
387 B
PHP
Executable File
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Item;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ItemFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'title' => $this->faker->unique()->text(),
|
|
'url' => $this->faker->unique()->url(),
|
|
];
|
|
}
|
|
}
|