Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
Add app version to page footer #93
Browse files Browse the repository at this point in the history
  • Loading branch information
kkamara committed Feb 9, 2022
1 parent 72e2a13 commit a1e9cb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [

'APP_VERSION' => env('APP_VERSION'),
'version' => env('APP_VERSION'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/footer.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<footer class="footer" style='margin-top:30px;'>
<div class="container text-center">
<span class="text-muted">
{{ config('app.name') }} &copy; 2018
{{ config('app.name') }} &copy; 2018. App version {{ config('app.version') }}
</span>
</div>
</footer>

0 comments on commit a1e9cb5

Please sign in to comment.