@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers; |
| 4 | 4 | |
| 5 | -use Validator; |
|
| 6 | 5 | use Illuminate\Http\Request; |
| 7 | 6 | use App\Http\Controllers\Controller; |
| 8 | 7 | use App\DataTables\UsersDataTable; |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | return redirect()->route('user.index') |
| 157 | - ->with('success','User deleted successfully'); |
|
| 157 | + ->with('success', 'User deleted successfully'); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
@@ -170,6 +170,6 @@ discard block |
||
| 170 | 170 | $user->restore(); |
| 171 | 171 | |
| 172 | 172 | return redirect()->route('user.show', $user->id) |
| 173 | - ->with('success','User restored successfully'); |
|
| 173 | + ->with('success', 'User restored successfully'); |
|
| 174 | 174 | } |
| 175 | 175 | } |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | { |
| 17 | 17 | return datatables($query) |
| 18 | 18 | ->editColumn('name', function(User $user) { |
| 19 | - return '<a href="' . route('user.show', $user->id) . '">'. $user->name . '</a>'; |
|
| 19 | + return '<a href="'.route('user.show', $user->id).'">'.$user->name.'</a>'; |
|
| 20 | 20 | }) |
| 21 | 21 | |
| 22 | 22 | ->editColumn('role', function(User $user) { |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * Store a newly created resource in storage. |
| 45 | 45 | * |
| 46 | 46 | * @param EditLocation $request |
| 47 | - * @return \Illuminate\Http\Response |
|
| 47 | + * @return \Illuminate\Http\RedirectResponse |
|
| 48 | 48 | */ |
| 49 | 49 | public function store(EditLocation $request) |
| 50 | 50 | { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * |
| 98 | 98 | * @param EditLocation $request |
| 99 | 99 | * @param int $id |
| 100 | - * @return \Illuminate\Http\Response |
|
| 100 | + * @return \Illuminate\Http\RedirectResponse |
|
| 101 | 101 | */ |
| 102 | 102 | public function update(EditLocation $request, $id) |
| 103 | 103 | { |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * Remove the specified resource from storage. |
| 123 | 123 | * |
| 124 | 124 | * @param int $id |
| 125 | - * @return \Illuminate\Http\Response |
|
| 125 | + * @return \Illuminate\Http\RedirectResponse |
|
| 126 | 126 | */ |
| 127 | 127 | public function destroy($id) |
| 128 | 128 | { |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers; |
| 4 | 4 | |
| 5 | -use Illuminate\Http\Request; |
|
| 6 | 5 | use App\DataTables\LocationDataTable; |
| 7 | 6 | use App\Location; |
| 8 | 7 | use App\Site; |
@@ -52,13 +52,13 @@ discard block |
||
| 52 | 52 | if (!empty($request->input('new_site_name'))) |
| 53 | 53 | { |
| 54 | 54 | //Create a new site |
| 55 | - $site = Site::create(['name' => $request->input('new_site_name')]); |
|
| 55 | + $site = Site::create([ 'name' => $request->input('new_site_name') ]); |
|
| 56 | 56 | $site_id = $site->id; |
| 57 | 57 | } |
| 58 | 58 | else |
| 59 | 59 | $site_id = $request->input('site'); |
| 60 | 60 | |
| 61 | - $location = Location::create(['name' => $request->input('name'), 'site_id' => $site_id]); |
|
| 61 | + $location = Location::create([ 'name' => $request->input('name'), 'site_id' => $site_id ]); |
|
| 62 | 62 | |
| 63 | 63 | return redirect()->route('location.show', $location->id) |
| 64 | 64 | ->with('success', 'Location created successfully'); |
@@ -105,14 +105,14 @@ discard block |
||
| 105 | 105 | if (!empty($request->input('new_site_name'))) |
| 106 | 106 | { |
| 107 | 107 | //Create a new site |
| 108 | - $site = Site::create(['name' => $request->input('new_site_name')]); |
|
| 108 | + $site = Site::create([ 'name' => $request->input('new_site_name') ]); |
|
| 109 | 109 | $site_id = $site->id; |
| 110 | 110 | } |
| 111 | 111 | else |
| 112 | 112 | $site_id = $request->input('site'); |
| 113 | 113 | |
| 114 | 114 | //Update the location with the supplied name and the site |
| 115 | - Location::findOrFail($id)->update(['name' => $request->input('name'), 'site_id' => $site_id]); |
|
| 115 | + Location::findOrFail($id)->update([ 'name' => $request->input('name'), 'site_id' => $site_id ]); |
|
| 116 | 116 | |
| 117 | 117 | return redirect()->route('location.show', $id) |
| 118 | 118 | ->with('success', 'Location updated successfully'); |
@@ -128,6 +128,6 @@ discard block |
||
| 128 | 128 | { |
| 129 | 129 | Location::findOrFail($id)->delete(); |
| 130 | 130 | return redirect()->route('location.index') |
| 131 | - ->with('success','Location deleted successfully'); |
|
| 131 | + ->with('success', 'Location deleted successfully'); |
|
| 132 | 132 | } |
| 133 | 133 | } |
@@ -54,9 +54,9 @@ discard block |
||
| 54 | 54 | //Create a new site |
| 55 | 55 | $site = Site::create(['name' => $request->input('new_site_name')]); |
| 56 | 56 | $site_id = $site->id; |
| 57 | + } else { |
|
| 58 | + $site_id = $request->input('site'); |
|
| 57 | 59 | } |
| 58 | - else |
|
| 59 | - $site_id = $request->input('site'); |
|
| 60 | 60 | |
| 61 | 61 | $location = Location::create(['name' => $request->input('name'), 'site_id' => $site_id]); |
| 62 | 62 | |
@@ -107,9 +107,9 @@ discard block |
||
| 107 | 107 | //Create a new site |
| 108 | 108 | $site = Site::create(['name' => $request->input('new_site_name')]); |
| 109 | 109 | $site_id = $site->id; |
| 110 | + } else { |
|
| 111 | + $site_id = $request->input('site'); |
|
| 110 | 112 | } |
| 111 | - else |
|
| 112 | - $site_id = $request->input('site'); |
|
| 113 | 113 | |
| 114 | 114 | //Update the location with the supplied name and the site |
| 115 | 115 | Location::findOrFail($id)->update(['name' => $request->input('name'), 'site_id' => $site_id]); |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | * Store a newly created resource in storage. |
| 42 | 42 | * |
| 43 | 43 | * @param \Illuminate\Http\Request $request |
| 44 | - * @return \Illuminate\Http\Response |
|
| 44 | + * @return \Illuminate\Http\RedirectResponse |
|
| 45 | 45 | */ |
| 46 | 46 | public function store(Request $request) |
| 47 | 47 | { |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * |
| 88 | 88 | * @param \Illuminate\Http\Request $request |
| 89 | 89 | * @param Site $site |
| 90 | - * @return \Illuminate\Http\Response |
|
| 90 | + * @return \Illuminate\Http\RedirectResponse |
|
| 91 | 91 | */ |
| 92 | 92 | public function update(Request $request, Site $site) |
| 93 | 93 | { |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | * Remove the specified resource from storage. |
| 106 | 106 | * |
| 107 | 107 | * @param int $id |
| 108 | - * @return \Illuminate\Http\Response |
|
| 108 | + * @return \Illuminate\Http\RedirectResponse |
|
| 109 | 109 | */ |
| 110 | 110 | public function destroy($id) |
| 111 | 111 | { |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | 'name' => 'required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name', |
| 50 | 50 | ]); |
| 51 | 51 | |
| 52 | - $site = Site::create(['name' => $request->name]); |
|
| 52 | + $site = Site::create([ 'name' => $request->name ]); |
|
| 53 | 53 | |
| 54 | 54 | return redirect()->route('site.show', $site->id) |
| 55 | 55 | ->with('success', 'Site created successfully'); |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | 'name' => 'required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name,'.$site->id, |
| 96 | 96 | ]); |
| 97 | 97 | |
| 98 | - $site->update(['name' => $request->name]); |
|
| 98 | + $site->update([ 'name' => $request->name ]); |
|
| 99 | 99 | |
| 100 | 100 | return redirect()->route('site.show', $site->id) |
| 101 | 101 | ->with('success', 'Site updated successfully'); |
@@ -111,6 +111,6 @@ discard block |
||
| 111 | 111 | { |
| 112 | 112 | Site::findOrFail($id)->delete(); |
| 113 | 113 | return redirect()->route('site.index') |
| 114 | - ->with('success','Site deleted successfully'); |
|
| 114 | + ->with('success', 'Site deleted successfully'); |
|
| 115 | 115 | } |
| 116 | 116 | } |
@@ -15,15 +15,15 @@ |
||
| 15 | 15 | public function dataTable($query) |
| 16 | 16 | { |
| 17 | 17 | return datatables($query) |
| 18 | - ->editColumn('name', function ($location) { |
|
| 19 | - return '<a href="' . route('location.show', $location->id) . '">'. $location->name . '</a>'; |
|
| 18 | + ->editColumn('name', function($location) { |
|
| 19 | + return '<a href="'.route('location.show', $location->id).'">'.$location->name.'</a>'; |
|
| 20 | 20 | }) |
| 21 | - ->editColumn('site_id', function ($location) { |
|
| 22 | - return '<a href="' . route('site.show', $location->site_id) . '">'. ($location->site->name ?? '') . '</a>'; |
|
| 21 | + ->editColumn('site_id', function($location) { |
|
| 22 | + return '<a href="'.route('site.show', $location->site_id).'">'.($location->site->name ?? '').'</a>'; |
|
| 23 | 23 | }) |
| 24 | 24 | ->addColumn('action', 'location.action') |
| 25 | 25 | ->blacklist([ 'action' ]) |
| 26 | - ->rawColumns(['site_id', 'name', 'action']); |
|
| 26 | + ->rawColumns([ 'site_id', 'name', 'action' ]); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -15,12 +15,12 @@ |
||
| 15 | 15 | public function dataTable($query) |
| 16 | 16 | { |
| 17 | 17 | return datatables($query) |
| 18 | - ->editColumn('name', function ($site) { |
|
| 19 | - return '<a href="' . route('site.show', $site->id) . '">'. $site->name . '</a>'; |
|
| 18 | + ->editColumn('name', function($site) { |
|
| 19 | + return '<a href="'.route('site.show', $site->id).'">'.$site->name.'</a>'; |
|
| 20 | 20 | }) |
| 21 | 21 | ->addColumn('action', 'site.action') |
| 22 | 22 | ->blacklist([ 'action' ]) |
| 23 | - ->rawColumns(['name', 'action']); |
|
| 23 | + ->rawColumns([ 'name', 'action' ]); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -38,11 +38,11 @@ |
||
| 38 | 38 | { |
| 39 | 39 | $validator = parent::getValidatorInstance(); |
| 40 | 40 | |
| 41 | - $validator->sometimes('site', 'required|integer|digits_between:1,10|exists:sites,id', function ($input) { |
|
| 41 | + $validator->sometimes('site', 'required|integer|digits_between:1,10|exists:sites,id', function($input) { |
|
| 42 | 42 | return !$input->new_site_name; |
| 43 | 43 | }); |
| 44 | 44 | |
| 45 | - $validator->sometimes('new_site_name', 'bail|required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name', function ($input) { |
|
| 45 | + $validator->sometimes('new_site_name', 'bail|required|min:2|max:75|regex:#(^[a-zA-Z0-9])([\w ]*)(\w$)#|unique:sites,name', function($input) { |
|
| 46 | 46 | return !$input->site; |
| 47 | 47 | }); |
| 48 | 48 | |