2021-06-22 15:13:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
|
|
|
class ServerFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
2023-01-05 17:02:35 +00:00
|
|
|
'name' => $this->faker->name(),
|
2021-06-22 15:13:24 +00:00
|
|
|
'description' => $this->faker->text(60),
|
|
|
|
'identifier' => Str::random(30),
|
2023-01-05 17:01:42 +00:00
|
|
|
'pterodactyl_id' => $this->faker->numberBetween(1000000, 1000000000),
|
|
|
|
'product_id' => Product::factory(),
|
2021-06-22 15:13:24 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|