@@ -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 |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * |
32 | 32 | * @var array |
33 | 33 | */ |
34 | - protected $hidden = ['token']; |
|
34 | + protected $hidden = [ 'token' ]; |
|
35 | 35 | |
36 | 36 | /** |
37 | 37 | * The attributes that are mass assignable. |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @var array |
52 | 52 | */ |
53 | - protected static $ignoreChangedAttributes = ['updated_at']; |
|
53 | + protected static $ignoreChangedAttributes = [ 'updated_at' ]; |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * The attributes to log in the Activity Log |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | */ |
92 | 92 | public function getSiteAttribute() |
93 | 93 | { |
94 | - return $this->location->site ?? (object)[]; |
|
94 | + return $this->location->site ?? (object) [ ]; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | else |
152 | 152 | $time = new Carbon($value, 'UTC'); |
153 | 153 | |
154 | - $this->attributes['open_time'] = $time->format('H:i:s'); |
|
154 | + $this->attributes[ 'open_time' ] = $time->format('H:i:s'); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | else |
174 | 174 | $time = new Carbon($value, 'UTC'); |
175 | 175 | |
176 | - $this->attributes['close_time'] = $time->format('H:i:s'); |
|
176 | + $this->attributes[ 'close_time' ] = $time->format('H:i:s'); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
@@ -107,8 +107,9 @@ discard block |
||
107 | 107 | $time = new Carbon($value, 'UTC'); |
108 | 108 | |
109 | 109 | //If the user is logged in then use there preferred timezone |
110 | - if (Auth::check()) |
|
111 | - $time = $time->setTimezone(Auth::user()->timezone); |
|
110 | + if (Auth::check()) { |
|
111 | + $time = $time->setTimezone(Auth::user()->timezone); |
|
112 | + } |
|
112 | 113 | |
113 | 114 | return $time->format('H:i'); |
114 | 115 | } |
@@ -126,8 +127,9 @@ discard block |
||
126 | 127 | $time = new Carbon($value, 'UTC'); |
127 | 128 | |
128 | 129 | //If the user is logged in then use there preferred timezone |
129 | - if (Auth::check()) |
|
130 | - $time = $time->setTimezone(Auth::user()->timezone); |
|
130 | + if (Auth::check()) { |
|
131 | + $time = $time->setTimezone(Auth::user()->timezone); |
|
132 | + } |
|
131 | 133 | |
132 | 134 | return $time->format('H:i'); |
133 | 135 | } |
@@ -147,9 +149,9 @@ discard block |
||
147 | 149 | { |
148 | 150 | $time = new Carbon($value, Auth::user()->timezone); |
149 | 151 | $time = $time->setTimezone('UTC'); |
152 | + } else { |
|
153 | + $time = new Carbon($value, 'UTC'); |
|
150 | 154 | } |
151 | - else |
|
152 | - $time = new Carbon($value, 'UTC'); |
|
153 | 155 | |
154 | 156 | $this->attributes['open_time'] = $time->format('H:i:s'); |
155 | 157 | } |
@@ -169,9 +171,9 @@ discard block |
||
169 | 171 | { |
170 | 172 | $time = new Carbon($value, Auth::user()->timezone); |
171 | 173 | $time = $time->setTimezone('UTC'); |
174 | + } else { |
|
175 | + $time = new Carbon($value, 'UTC'); |
|
172 | 176 | } |
173 | - else |
|
174 | - $time = new Carbon($value, 'UTC'); |
|
175 | 177 | |
176 | 178 | $this->attributes['close_time'] = $time->format('H:i:s'); |
177 | 179 | } |