Completed
Pull Request — master (#37)
by Tim
03:32
created
app/Http/Controllers/CustomersController.php 1 patch
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
-
7
-use App\Http\Requests;
8 5
 use App\Customer as Customer;
9 6
 
10 7
 class CustomersController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/StaffController.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,15 +14,15 @@
 block discarded – undo
14 14
         $this->middleware('auth');
15 15
     }
16 16
 
17
-	public function index()
18
-	{
19
-		$data['users'] = User::all();
20
-    	return view('users/index', $data);
17
+    public function index()
18
+    {
19
+        $data['users'] = User::all();
20
+        return view('users/index', $data);
21 21
     }
22 22
 
23 23
 
24 24
     public function profile()
25 25
     {
26
-    	return view('users/profile');
26
+        return view('users/profile');
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
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
-
7
-use App\Http\Requests;
8 5
 use App\Customer as Customer;
9 6
 
10 7
 class CustomersController extends Controller
Please login to merge, or discard this patch.