🛠️ Add services index and landing page components with dynamic links and new Polish translations

This commit is contained in:
HolgerHatGarKeineNode
2025-12-07 00:01:15 +01:00
parent bc700a1f2c
commit aef4deedd6
25 changed files with 2427 additions and 878 deletions

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
{
public function up(): void
{
Schema::create('self_hosted_services', function (Blueprint $table): void {
$table->id();
$table->foreignId('created_by')->nullable()->constrained('users')->cascadeOnDelete()->cascadeOnUpdate();
$table->string('name');
$table->string('slug')->unique();
$table->text('intro')->nullable();
$table->string('url_clearnet')->nullable();
$table->string('url_onion')->nullable();
$table->string('url_i2p')->nullable();
$table->string('url_pkdns')->nullable();
$table->string('type');
$table->text('contact')->nullable();
$table->timestamps();
$table->index('created_by');
});
}
public function down(): void
{
Schema::dropIfExists('self_hosted_services');
}
};