feat: kariyer formu, mobil offcanvas menu ve blog modulu iyilestirmeleri
This commit is contained in:
@@ -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');
|
||||
}
|
||||
};
|
||||
@@ -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' => '',
|
||||
|
||||
Reference in New Issue
Block a user