feat: kariyer formu, mobil offcanvas menu ve blog modulu iyilestirmeleri

This commit is contained in:
Muhammet Güler
2026-03-10 18:50:23 +03:00
parent f4f601a492
commit 4924cb0dc8
25 changed files with 1220 additions and 182 deletions
@@ -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('career_applications', function (Blueprint $blueprint) {
$blueprint->id();
$blueprint->string('name');
$blueprint->string('email');
$blueprint->string('phone')->nullable();
$blueprint->string('cv_path');
$blueprint->text('message')->nullable();
$blueprint->string('status')->default('pending'); // pending, reviewed, rejected, accepted
$blueprint->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('career_applications');
}
};
+10
View File
@@ -659,6 +659,16 @@ class SettingSeeder extends Seeder
'is_public' => false,
'is_active' => true,
],
[
'key' => 'seo_google_search_console',
'value' => '',
'type' => 'string',
'group' => 'seo',
'label' => 'Google Search Console',
'description' => 'Google Search Console doğrulama kodu',
'is_public' => false,
'is_active' => true,
],
[
'key' => 'seo_google_tag_manager_id',
'value' => '',