Completed
Push — master ( a31d1c...7656f0 )
by Tim
02:25
created
app/Http/Controllers/CustomersController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\Customer;
6
-use Illuminate\Http\Request;
7
-
8 6
 use App\Http\Requests;
9 7
 
10 8
 class CustomersController extends Controller
Please login to merge, or discard this patch.
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.