-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* sections about.blade.php * about page translations * remove partners page * case studies page design * add option to create colored ces study's title with factory, removed unnecessary fields in case studies table, changed images on home and about page, changed description on about page and case studies page * removed hover bg color on navigation items * cr changes * cr changes * reorder "Our mission" section, mention issues in ToDo's
- Loading branch information
1 parent
6eff7c5
commit 5aae60f
Showing
29 changed files
with
1,244 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
database/migrations/2024_07_28_193303_change_name_in_case_studies_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
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::table("case_studies", function (Blueprint $table): void { | ||
$table->renameColumn("name", "name_first_part"); | ||
$table->string("name_second_part")->nullable(); | ||
$table->string("name_third_part")->nullable(); | ||
}); | ||
} | ||
|
||
public function down(): void | ||
{ | ||
Schema::table("case_studies", function (Blueprint $table): void { | ||
$table->renameColumn("name_first_part", "name"); | ||
$table->dropColumn("name_second_part"); | ||
$table->dropColumn("name_third_part"); | ||
}); | ||
} | ||
}; |
23 changes: 23 additions & 0 deletions
23
database/migrations/2024_07_28_193418_add_color_in_case_studies_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
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::table("case_studies", function (Blueprint $table): void { | ||
$table->string("color")->nullable(); | ||
}); | ||
} | ||
|
||
public function down(): void | ||
{ | ||
Schema::table("case_studies", function (Blueprint $table): void { | ||
$table->dropColumn("color"); | ||
}); | ||
} | ||
}; |
25 changes: 25 additions & 0 deletions
25
database/migrations/2024_07_28_195732_remove_columns_in_case_studies_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
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::table("case_studies", function (Blueprint $table): void { | ||
$table->dropColumn("description"); | ||
$table->dropColumn("company"); | ||
}); | ||
} | ||
|
||
public function down(): void | ||
{ | ||
Schema::table("case_studies", function (Blueprint $table): void { | ||
$table->json("description")->nullable(); | ||
$table->string("company")->nullable(); | ||
}); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.