File "BaseController.php"

Full Path: /home/isoftco/public_html/hrm/app/Http/Controllers/BaseController.php
File size: 380 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Http\Controllers;

use App\Models\Setting;
use Illuminate\Support\Facades\View;

class BaseController extends Controller
{
    public function __construct()
    {
        parent::__construct();

    }

    protected function setupLayout()
    {
        if (!is_null($this->layout)) {
            $this->layout = View::make($this->layout);
        }
    }

}