Completed
Push — master ( 4a15ab...d06fb7 )
by Tim
02:41
created
app/Http/Controllers/StaffController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
52 52
      */
53 53
     public function index()
54
-	{
55
-		$data['users'] = User::paginate(15);
56
-    	return view('users/index', $data);
54
+    {
55
+        $data['users'] = User::paginate(15);
56
+        return view('users/index', $data);
57 57
     }
58 58
 
59 59
     /**
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public function profile()
93 93
     {
94
-    	return view('users/profile');
94
+        return view('users/profile');
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.