misc_pterodactyl-panel/database/Factories/ScheduleFactory.php

26 lines
490 B
PHP

<?php
namespace Database\factories2;
use Pterodactyl\Models\Schedule;
use Illuminate\Database\Eloquent\Factories\Factory;
class ScheduleFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Schedule::class;
/**
* Define the model's default state.
*/
public function definition(): array
{
return [
'name' => $this->faker->firstName(),
];
}
}