Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
HomeController
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 index
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace App\Http\Controllers\Dashboard;
4
5use App\Helpers\Helper;
6use App\Http\Controllers\Controller;
7use App\Notifications\testNotification;
8use Illuminate\Http\Request;
9use Illuminate\Support\Facades\Notification;
10use Illuminate\Support\Facades\Storage;
11
12class HomeController extends Controller
13{
14    public function index(){
15
16        return view('Dashboard.home');
17    }
18}