Completed
Push — master ( 979881...7eed12 )
by Glenn
12s
created
app/Http/Controllers/WelcomeController.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-use App\Http\Requests;
7
-
8 5
 use App\Roles;
9 6
 
10 7
 class RolesController extends Controller
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
      */
26 26
     public function index()
27 27
     {
28
-        $data["department"] = Departments::all();
29
-        $data["agents"] = User::all();
28
+        $data[ "department" ] = Departments::all();
29
+        $data[ "agents" ] = User::all();
30 30
         return view('welcome', $data);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.