Skip to content

Commit

Permalink
Update home blade
Browse files Browse the repository at this point in the history
Made Session conditional for showing details in footer to be 1 step
  • Loading branch information
cp6 committed Sep 22, 2023
1 parent c296bd6 commit 4179f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class="text-body mx-1"><i class="fas fa-eye"
@endif
@endif

@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
@if(Session::get('timer_version_footer', 0) === 1)
<p class="text-muted mt-4 text-end"><small>Page took {{$information['execution_time']}} seconds,
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}),
Rates By <a href="https://www.exchangerate-api.com">Exchange Rate API</a>
Expand Down

0 comments on commit 4179f70

Please sign in to comment.