From 03a352a38460abb87da525309145f5d2f01b5c3a Mon Sep 17 00:00:00 2001 From: alexcaussades Date: Mon, 20 Nov 2023 00:27:00 +0100 Subject: [PATCH 1/2] creat database metar_fav --- .../2023_11_19_232154_metar_fav.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2023_11_19_232154_metar_fav.php diff --git a/database/migrations/2023_11_19_232154_metar_fav.php b/database/migrations/2023_11_19_232154_metar_fav.php new file mode 100644 index 0000000..c422c16 --- /dev/null +++ b/database/migrations/2023_11_19_232154_metar_fav.php @@ -0,0 +1,30 @@ +id()->autoIncrement(); + $table->string('id_user'); + $table->string('vid'); + $table->string('icao'); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::dropIfExists('metar_fav'); + } +}; From 8e7e66079abb8e9d366f785e42760cc0d1fbc644 Mon Sep 17 00:00:00 2001 From: alexcaussades Date: Mon, 20 Nov 2023 07:26:51 +0100 Subject: [PATCH 2/2] wel_pages --- resources/views/welcome.blade.php | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 428ea90..1e57f71 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -19,6 +19,11 @@ @endauth @include('nav-wellcome')
+
+ +
@@ -111,6 +116,30 @@
+ @auth() +
+ +
+
Last Metar
+
+
+
+
+
+

Pilot

+

{{ $whazzup["pilot"] }}

+
+
+
+
+
+
+ + + + + + @endauth @endsection \ No newline at end of file