Refactor navigation icon declarations in various resources for consistency; enhance Group model with new relationships and fillable properties; update Hotel and Pilgrim models with fillable attributes; improve table configurations across resources.

This commit is contained in:
2025-09-03 19:10:21 +05:00
parent f9f4c476ce
commit e2b47eb73f
39 changed files with 634 additions and 53 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Group>
*/
class GroupFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'start_date' => $this->faker->dateTimeBetween('+1 week', '+2 week'),
'end_date' => $this->faker->dateTimeBetween('+3 week', '+4 week'),
];
}
}

View File

@@ -0,0 +1,54 @@
<?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',
],
],
],
],
];
}
}

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('programs', function (Blueprint $table) {
$table->id();
$table->foreignId('group_id')->constrained()->cascadeOnDelete();
$table->json('days');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('programs');
}
};

View File

@@ -2,9 +2,8 @@
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use App\Models\Teacher;
use Illuminate\Database\Seeder;
class TeacherTableSeeder extends Seeder
{