Issues (56)

app/Http/Controllers/HomeController.php (1 issue)

1
<?php
2
3
namespace App\Http\Controllers;
4
5
use Illuminate\Http\Request;
6
7
class HomeController extends Controller
8
{
9
    /**
10
     * Create a new controller instance.
11
     *
12
     * @return void
13
     */
14
    public function __construct()
15
    {
16
        $this->middleware('auth');
17
    }
18
19
    /**
20
     * Show the application dashboard.
21
     *
22
     * @return \Illuminate\Http\Response
23
     */
24
    public function index()
25
    {
26
        return view('adminlte::home');
0 ignored issues
show
Bug Best Practice introduced by
The expression return view('adminlte::home') returns the type Illuminate\View\View which is incompatible with the documented return type Illuminate\Http\Response.
Loading history...
27
    }
28
}
29