Files
backend-umra/database/factories/ProgramFactory.php

55 lines
1.6 KiB
PHP

<?php
namespace Database\Factories;
use App\Models\Group;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Program>
*/
class ProgramFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'group_id' => Group::factory(),
'days' => [
[
'day_number' => 1,
'actions' => [
[
'title' => 'Mekkä şäherine ugramak',
'description' => $this->faker->paragraph,
'time' => '09:00',
'icon' => 'heroicon-o-paper-airplane',
],
[
'title' => 'Mekgedäki myhmanhana ýerleşmek',
'description' => $this->faker->paragraph,
'time' => '14:00',
'icon' => 'heroicon-o-building-office-2',
],
],
],
[
'day_number' => 2,
'actions' => [
[
'title' => 'Umra ybadaty',
'description' => $this->faker->paragraph,
'time' => '09:00',
'icon' => 'heroicon-o-moon',
],
],
],
],
];
}
}