Add (routes): All routes possible

Add (pages): home country page
This commit is contained in:
2023-07-26 03:10:36 +08:00
parent 728fc09474
commit 36efe23dcc
24 changed files with 4125 additions and 51 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 MiB

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::table('categories', function (Blueprint $table) {
$table->string('country_locale_slug')->after('country_locale_id')->default('my');
$table->foreign('country_locale_slug')->references('slug')->on('country_locales');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('categories', function (Blueprint $table) {
$table->dropColumn('country_locale_slug');
});
}
};

View File

@@ -0,0 +1,30 @@
<?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::table('country_locales', function (Blueprint $table) {
$table->string('country_iso')->after('i18n');
$table->string('lang')->after('i18n');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('country_locales', function (Blueprint $table) {
$table->dropColumn('country_iso');
$table->dropColumn('lang');
});
}
};