From 9320b2eae2d89c853c6be9bf034c2fa6fe602bb9 Mon Sep 17 00:00:00 2001 From: alexcaussades Date: Sat, 25 Nov 2023 11:35:01 +0100 Subject: [PATCH 1/3] Fix data base_change --- .../2023_11_25_103158_updateusers.php | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 database/migrations/2023_11_25_103158_updateusers.php diff --git a/database/migrations/2023_11_25_103158_updateusers.php b/database/migrations/2023_11_25_103158_updateusers.php new file mode 100644 index 0000000..2de0b22 --- /dev/null +++ b/database/migrations/2023_11_25_103158_updateusers.php @@ -0,0 +1,26 @@ +string('email')->nullable()->change()->comment('Email'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // + } +}; From b5b1145ede9b01ff60d9b30efd8028ee95f871bf Mon Sep 17 00:00:00 2001 From: alexcaussades Date: Sat, 25 Nov 2023 11:37:33 +0100 Subject: [PATCH 2/3] changelog --- database/changelog.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/database/changelog.json b/database/changelog.json index d6e5a95..0f04db4 100644 --- a/database/changelog.json +++ b/database/changelog.json @@ -227,5 +227,25 @@ "description": "Prepare the favorites metar (not finished) | (V.0.0.2 in progress)" } ] + }, + "9": { + "id": 10, + "name": "2023 / 35", + "date": "2023-11-25", + "version": "26.2.6", + "option": [ + { + "id": 0, + "type": "Bug Fix", + "btn": "danger", + "description": "Fixed Account creat page" + }, + { + "id": 1, + "type": "Change", + "btn": "warning", + "description": "change welcome page" + } + ] } } From 92703ae4efc9efa4be41387143b96ddef8b3fab7 Mon Sep 17 00:00:00 2001 From: alexcaussades Date: Sat, 25 Nov 2023 12:24:32 +0100 Subject: [PATCH 3/3] changelog description --- resources/views/changelog.blade.php | 2 +- resources/views/index-changelog.blade.php | 94 +++++++++++++++++++++++ 2 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 resources/views/index-changelog.blade.php diff --git a/resources/views/changelog.blade.php b/resources/views/changelog.blade.php index 2548884..35b7356 100644 --- a/resources/views/changelog.blade.php +++ b/resources/views/changelog.blade.php @@ -1,4 +1,4 @@ -@extends("index-base") +@extends("index-changelog") @section("title", "Changelog") diff --git a/resources/views/index-changelog.blade.php b/resources/views/index-changelog.blade.php new file mode 100644 index 0000000..305c346 --- /dev/null +++ b/resources/views/index-changelog.blade.php @@ -0,0 +1,94 @@ + + + + + + + + @yield("title") IVATRAC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @if (ENV('APP_ENV') == 'local') + + + + + @else + + + + @endif + +@yield('navbar') + + + + + @yield('content') + + + @if (ENV('APP_ENV') == 'local') + + @else + + @endif + + + \ No newline at end of file