aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Controllers/HomeController.php
blob: 7994c2cd83419ef87c72cc78a290e8266126c089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

namespace App\Http\Controllers;

use Illuminate\View\View;
use DateTime;

class HomeController extends Controller {
    /**
     * Returns age based on birthday date and current date (GMT)
     * @return 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"));
        $age = $birthday->diff($currentDate);
        return $age->y;
    }

    /**
     * Shows home page
     * @return View
     */
    public function show(): View {
        return view('home', [
            'age' => $this->returnAge()
        ]);
    }
}