Completed
Push — master ( a31d1c...7656f0 )
by Tim
02:25
created
app/Http/Controllers/StaffController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@  discard block
 block discarded – undo
23 23
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
24 24
      */
25 25
     public function index()
26
-	{
27
-		$data['users'] = User::all();
28
-    	return view('users/index', $data);
26
+    {
27
+        $data['users'] = User::all();
28
+        return view('users/index', $data);
29 29
     }
30 30
 
31 31
     /**
@@ -63,6 +63,6 @@  discard block
 block discarded – undo
63 63
      */
64 64
     public function profile()
65 65
     {
66
-    	return view('users/profile');
66
+        return view('users/profile');
67 67
     }
68 68
 }
Please login to merge, or discard this patch.