File "Controller.php"

Full Path: /home/trinadezambia/public_html/gambling/app/Http/Controllers/Controller.php
File size: 303 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Http\Controllers;

use Laramin\Utility\Onumoti;

abstract class Controller
{
    public function __construct()
    {
        $className = get_called_class();
        Onumoti::mySite($this,$className);
    }

    public static function middleware()
    {
        return [];
    }

}