diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
commit | 74bca7ac803aeea3d5091344b99520687e3a3bd1 (patch) | |
tree | 8a63a2341303daac4ac621f8f4962a81d684e88a /app/Http/Controllers | |
parent | 9900446d9590024c34f55a45055776a396fb694e (diff) | |
parent | 14d3ed966bbafbcb01182df26fbbe1d5a211f4c2 (diff) |
Merge branch 'redesign'
Diffstat (limited to 'app/Http/Controllers')
-rw-r--r-- | app/Http/Controllers/HomeController.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 3fad094..e046d58 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -2,17 +2,18 @@ namespace App\Http\Controllers; +use Illuminate\Support\Facades\Cache; +use Illuminate\Support\Facades\Config; +use Illuminate\Support\Facades\Http; use Illuminate\View\View; use DateTime; -class HomeController extends Controller -{ +class HomeController extends Controller { /** * Returns age based on birthday date and current date (GMT) * @return int */ - function returnAge(): int - { + function returnAge(): int { date_default_timezone_set('Europe/London'); $birthday = new DateTime("2005-06-07"); $currentDate = DateTime::createFromFormat("Y-m-d", date("Y-m-d")); @@ -24,9 +25,9 @@ class HomeController extends Controller * Shows home page * @return View */ - public function show() : View { + public function show(): View { return view('home', [ - 'age' => $this->returnAge() + 'age' => $this->returnAge(), ]); } } |