From 49fdce4f8159a817cc7a2609cdab53e9776c5c78 Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Tue, 9 Dec 2025 18:59:03 -0500 Subject: [PATCH 1/3] Added version to dashboard footer (#2537) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- resources/views/layouts/app.blade.php | 81 +------------------ .../views/layouts/partials/footer.blade.php | 15 ++++ .../views/layouts/partials/header.blade.php | 78 ++++++++++++++++++ 3 files changed, 96 insertions(+), 78 deletions(-) create mode 100644 resources/views/layouts/partials/footer.blade.php create mode 100644 resources/views/layouts/partials/header.blade.php diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 1d23aaac1..078505014 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -35,86 +35,11 @@
-
-
-

{{ $title ?? 'Page Title' }} - {{ config('app.name') }}

-
- -
-
- - - - - -
- - @auth - - {{ __('general.admin') }} - - @else - - {{ __('auth.sign_in') }} - - @endauth -
-
+ @include('layouts.partials.header') {{ $slot }} + + @include('layouts.partials.footer')
{{-- Scripts --}} diff --git a/resources/views/layouts/partials/footer.blade.php b/resources/views/layouts/partials/footer.blade.php new file mode 100644 index 000000000..bca1d3815 --- /dev/null +++ b/resources/views/layouts/partials/footer.blade.php @@ -0,0 +1,15 @@ + diff --git a/resources/views/layouts/partials/header.blade.php b/resources/views/layouts/partials/header.blade.php new file mode 100644 index 000000000..b8eed7ffc --- /dev/null +++ b/resources/views/layouts/partials/header.blade.php @@ -0,0 +1,78 @@ +
+
+

{{ $title ?? 'Page Title' }} - {{ config('app.name') }}

+
+ +
+
+ + + + + +
+ + @auth + + {{ __('general.admin') }} + + @else + + {{ __('auth.sign_in') }} + + @endauth +
+
From 73f44abb3cf6b3a2918144e7e201b1f34cbe5145 Mon Sep 17 00:00:00 2001 From: Sven van Ginkel Date: Thu, 11 Dec 2025 17:26:31 +0100 Subject: [PATCH 2/3] feat: add speedtest button to metric dashboard (#2521) --- app/Livewire/Topbar/Actions.php | 2 ++ resources/views/layouts/partials/header.blade.php | 2 ++ resources/views/livewire/topbar/actions.blade.php | 5 +++-- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/app/Livewire/Topbar/Actions.php b/app/Livewire/Topbar/Actions.php index 95a8abcce..5f687ae86 100644 --- a/app/Livewire/Topbar/Actions.php +++ b/app/Livewire/Topbar/Actions.php @@ -21,6 +21,8 @@ class Actions extends Component implements HasActions, HasForms { use InteractsWithActions, InteractsWithForms; + public bool $showDashboard = true; + public function dashboardAction(): Action { return Action::make('metrics') diff --git a/resources/views/layouts/partials/header.blade.php b/resources/views/layouts/partials/header.blade.php index b8eed7ffc..d26419f78 100644 --- a/resources/views/layouts/partials/header.blade.php +++ b/resources/views/layouts/partials/header.blade.php @@ -55,6 +55,8 @@ class="p-2 rounded-md transition-all" @auth + + {{ $this->speedtestAction }} - {{ $this->dashboardAction }} - + @if ($showDashboard) + {{ $this->dashboardAction }} + @endif From b7e573f56474babfcf3bf568b2e28c0902f3ceef Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Mon, 15 Dec 2025 08:54:42 -0500 Subject: [PATCH 3/3] Release v1.12.4 (#2548) Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com> --- config/speedtest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/speedtest.php b/config/speedtest.php index dfaf9ac76..ec4e255a3 100644 --- a/config/speedtest.php +++ b/config/speedtest.php @@ -6,9 +6,9 @@ /** * General settings. */ - 'build_date' => Carbon::parse('2025-12-08'), + 'build_date' => Carbon::parse('2025-12-15'), - 'build_version' => 'v1.12.3', + 'build_version' => 'v1.12.4', 'content_width' => env('CONTENT_WIDTH', '7xl'),