Refactor GroupResource to use a static property for navigation icon; add method documentation for name attribute in Group model.

This commit is contained in:
2025-08-31 18:51:46 +05:00
parent 3e58524af7
commit f9f4c476ce
20 changed files with 547 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
<?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('hotels', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->text('image')->nullable();
$table->json('images')->nullable();
$table->json('geo_location')->nullable();
$table->enum('city', ['Makkah', 'Madinah']);
$table->string('haram_distance');
$table->unsignedTinyInteger('star')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('hotels');
}
};

View File

@@ -0,0 +1,33 @@
<?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('rooms', function (Blueprint $table) {
$table->id();
$table->foreignId('hotel_id')->constrained()->cascadeOnDelete();
$table->string('name');
$table->string('floor');
$table->json('images')->nullable();
$table->unsignedTinyInteger('bed_count')->default(1);
$table->boolean('wide')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('rooms');
}
};