nooktheme/database/Factories/ScheduleFactory.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

27 lines
489 B
PHP

<?php
namespace Database\Factories;
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(),
];
}
}