@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace App\DataTables; |
4 | 4 | |
5 | 5 | use App\Device; |
6 | -use App\Site; |
|
7 | 6 | use Yajra\DataTables\Services\DataTable; |
8 | 7 | |
9 | 8 | class DevicesDataTable extends DataTable |
@@ -16,19 +16,19 @@ |
||
16 | 16 | public function dataTable($query) |
17 | 17 | { |
18 | 18 | return datatables($query) |
19 | - ->editColumn('name', function ($device) { |
|
20 | - return '<a href="' . route('device.show', $device->id) . '">' . $device->name . '</a>'; |
|
19 | + ->editColumn('name', function($device) { |
|
20 | + return '<a href="'.route('device.show', $device->id).'">'.$device->name.'</a>'; |
|
21 | 21 | }) |
22 | - ->addColumn('location', function ($device) { |
|
22 | + ->addColumn('location', function($device) { |
|
23 | 23 | return ($device->location->name ?? 'null'); |
24 | 24 | }) |
25 | - ->addColumn('site', function ($device) { |
|
25 | + ->addColumn('site', function($device) { |
|
26 | 26 | return ($device->location->site->name ?? 'null'); |
27 | 27 | }) |
28 | - ->addColumn('rates', function ($device) { |
|
29 | - return $device->update_rate . '/' . $device->image_rate .'/' . $device->sensor_rate; |
|
28 | + ->addColumn('rates', function($device) { |
|
29 | + return $device->update_rate.'/'.$device->image_rate.'/'.$device->sensor_rate; |
|
30 | 30 | }) |
31 | - ->editColumn('updated_at', function ($device) { |
|
31 | + ->editColumn('updated_at', function($device) { |
|
32 | 32 | return (is_object($device->updated_at) ? $device->updated_at->diffForHumans() : 'never'); |
33 | 33 | }) |
34 | 34 | ->blacklist([ 'location', 'site', 'rates' ]) |
@@ -16,16 +16,16 @@ discard block |
||
16 | 16 | public function dataTable($query) |
17 | 17 | { |
18 | 18 | return datatables($query) |
19 | - ->editColumn('causer_id', function ($activity) { |
|
20 | - return ($activity->causer_id ? '<a href="/' . ($activity->causer_type == "App\User" ? 'user' : 'device') . '/' . $activity->causer_id . '">' . ($activity->causer->name ?? '') . '</a>' : 'App'); |
|
19 | + ->editColumn('causer_id', function($activity) { |
|
20 | + return ($activity->causer_id ? '<a href="/'.($activity->causer_type == "App\User" ? 'user' : 'device').'/'.$activity->causer_id.'">'.($activity->causer->name ?? '').'</a>' : 'App'); |
|
21 | 21 | }) |
22 | - ->editColumn('subject_id', function ($activity) { |
|
23 | - return ($activity->subject_id ? '<a href="/' . ($activity->subject_type == "App\User" ? 'user' : 'device') . '/' . $activity->subject_id . '">' . ($activity->subject->name ?? '') . '</a>' : 'App'); |
|
22 | + ->editColumn('subject_id', function($activity) { |
|
23 | + return ($activity->subject_id ? '<a href="/'.($activity->subject_type == "App\User" ? 'user' : 'device').'/'.$activity->subject_id.'">'.($activity->subject->name ?? '').'</a>' : 'App'); |
|
24 | 24 | }) |
25 | - ->editColumn('properties', function ($activity) { |
|
25 | + ->editColumn('properties', function($activity) { |
|
26 | 26 | return $activity->properties; |
27 | 27 | }) |
28 | - ->rawColumns(['causer_id', 'subject_id', 'properties']); |
|
28 | + ->rawColumns([ 'causer_id', 'subject_id', 'properties' ]); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -98,6 +98,6 @@ discard block |
||
98 | 98 | */ |
99 | 99 | protected function filename() |
100 | 100 | { |
101 | - return 'activitylog_' . time(); |
|
101 | + return 'activitylog_'.time(); |
|
102 | 102 | } |
103 | 103 | } |
@@ -111,7 +111,7 @@ |
||
111 | 111 | { |
112 | 112 | SensorData::find($id)->delete(); |
113 | 113 | return redirect()->route('sensordata.index') |
114 | - ->with('success','SensorData deleted successfully'); |
|
114 | + ->with('success', 'SensorData deleted successfully'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | } |
@@ -9,42 +9,42 @@ discard block |
||
9 | 9 | class SensorDataController extends Controller |
10 | 10 | { |
11 | 11 | /** |
12 | - * Create a new controller instance. |
|
13 | - * |
|
14 | - * @return void |
|
15 | - */ |
|
12 | + * Create a new controller instance. |
|
13 | + * |
|
14 | + * @return void |
|
15 | + */ |
|
16 | 16 | public function __construct() |
17 | 17 | { |
18 | 18 | $this->middleware('auth'); |
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
22 | - * Display a listing of the resource. |
|
23 | - * |
|
24 | - * @param SensorDataDataTable $dataTable |
|
25 | - * @return Response |
|
26 | - */ |
|
22 | + * Display a listing of the resource. |
|
23 | + * |
|
24 | + * @param SensorDataDataTable $dataTable |
|
25 | + * @return Response |
|
26 | + */ |
|
27 | 27 | public function index(SensorDataDataTable $dataTable) |
28 | 28 | { |
29 | 29 | return $dataTable->render('sensordata.index'); |
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
33 | - * Show the form for creating a new resource. |
|
34 | - * |
|
35 | - * @return Response |
|
36 | - */ |
|
33 | + * Show the form for creating a new resource. |
|
34 | + * |
|
35 | + * @return Response |
|
36 | + */ |
|
37 | 37 | public function create() |
38 | 38 | { |
39 | 39 | return view('sensordata.create'); |
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | - * Store a newly created resource in storage. |
|
44 | - * |
|
45 | - * @param Request $request |
|
46 | - * @return Response |
|
47 | - */ |
|
43 | + * Store a newly created resource in storage. |
|
44 | + * |
|
45 | + * @param Request $request |
|
46 | + * @return Response |
|
47 | + */ |
|
48 | 48 | public function store(Request $request) |
49 | 49 | { |
50 | 50 | request()->validate([ |
@@ -59,12 +59,12 @@ discard block |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * Display the specified resource. |
|
63 | - * |
|
64 | - * @param Request $request |
|
65 | - * @param int $id |
|
66 | - * @return Response |
|
67 | - */ |
|
62 | + * Display the specified resource. |
|
63 | + * |
|
64 | + * @param Request $request |
|
65 | + * @param int $id |
|
66 | + * @return Response |
|
67 | + */ |
|
68 | 68 | public function show(Request $request, $id) |
69 | 69 | { |
70 | 70 | $sensordata = SensorData::findOrFail($id); |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
76 | - * Show the form for editing the specified resource. |
|
77 | - * |
|
78 | - * @param int $id |
|
79 | - * @return Response |
|
80 | - */ |
|
76 | + * Show the form for editing the specified resource. |
|
77 | + * |
|
78 | + * @param int $id |
|
79 | + * @return Response |
|
80 | + */ |
|
81 | 81 | public function edit(Request $request, $id) |
82 | 82 | { |
83 | 83 | $sensordata = SensorData::findOrFail($id); |
@@ -86,11 +86,11 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
89 | - * Update the specified resource in storage. |
|
90 | - * |
|
91 | - * @param int $id |
|
92 | - * @return Response |
|
93 | - */ |
|
89 | + * Update the specified resource in storage. |
|
90 | + * |
|
91 | + * @param int $id |
|
92 | + * @return Response |
|
93 | + */ |
|
94 | 94 | public function update($id) |
95 | 95 | { |
96 | 96 | request()->validate([ |
@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
106 | - * Remove the specified resource from storage. |
|
107 | - * |
|
108 | - * @param int $id |
|
109 | - * @return Response |
|
110 | - */ |
|
106 | + * Remove the specified resource from storage. |
|
107 | + * |
|
108 | + * @param int $id |
|
109 | + * @return Response |
|
110 | + */ |
|
111 | 111 | public function destroy($id) |
112 | 112 | { |
113 | 113 | SensorData::find($id)->delete(); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * Store a newly created resource in storage. |
44 | 44 | * |
45 | 45 | * @param Request $request |
46 | - * @return Response |
|
46 | + * @return \Illuminate\Http\RedirectResponse |
|
47 | 47 | */ |
48 | 48 | public function store(Request $request) |
49 | 49 | { |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * Update the specified resource in storage. |
90 | 90 | * |
91 | 91 | * @param int $id |
92 | - * @return Response |
|
92 | + * @return \Illuminate\Http\RedirectResponse |
|
93 | 93 | */ |
94 | 94 | public function update($id) |
95 | 95 | { |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * Remove the specified resource from storage. |
107 | 107 | * |
108 | 108 | * @param int $id |
109 | - * @return Response |
|
109 | + * @return \Illuminate\Http\RedirectResponse |
|
110 | 110 | */ |
111 | 111 | public function destroy($id) |
112 | 112 | { |
@@ -10,42 +10,42 @@ discard block |
||
10 | 10 | class SensorController extends Controller |
11 | 11 | { |
12 | 12 | /** |
13 | - * Create a new controller instance. |
|
14 | - * |
|
15 | - * @return void |
|
16 | - */ |
|
13 | + * Create a new controller instance. |
|
14 | + * |
|
15 | + * @return void |
|
16 | + */ |
|
17 | 17 | public function __construct() |
18 | 18 | { |
19 | 19 | $this->middleware('auth'); |
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
23 | - * Display a listing of the resource. |
|
24 | - * |
|
25 | - * @param SensorDataTable $dataTable |
|
26 | - * @return Response |
|
27 | - */ |
|
23 | + * Display a listing of the resource. |
|
24 | + * |
|
25 | + * @param SensorDataTable $dataTable |
|
26 | + * @return Response |
|
27 | + */ |
|
28 | 28 | public function index(SensorDataTable $dataTable) |
29 | 29 | { |
30 | 30 | return $dataTable->render('sensor.index'); |
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
34 | - * Show the form for creating a new resource. |
|
35 | - * |
|
36 | - * @return Response |
|
37 | - */ |
|
34 | + * Show the form for creating a new resource. |
|
35 | + * |
|
36 | + * @return Response |
|
37 | + */ |
|
38 | 38 | public function create() |
39 | 39 | { |
40 | 40 | return view('sensor.create'); |
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
44 | - * Store a newly created resource in storage. |
|
45 | - * |
|
46 | - * @param Request $request |
|
47 | - * @return Response |
|
48 | - */ |
|
44 | + * Store a newly created resource in storage. |
|
45 | + * |
|
46 | + * @param Request $request |
|
47 | + * @return Response |
|
48 | + */ |
|
49 | 49 | public function store(Request $request) |
50 | 50 | { |
51 | 51 | request()->validate([ |
@@ -61,12 +61,12 @@ discard block |
||
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | - * Display the specified resource. |
|
65 | - * |
|
66 | - * @param Request $request |
|
67 | - * @param int $id |
|
68 | - * @return Response |
|
69 | - */ |
|
64 | + * Display the specified resource. |
|
65 | + * |
|
66 | + * @param Request $request |
|
67 | + * @param int $id |
|
68 | + * @return Response |
|
69 | + */ |
|
70 | 70 | public function show(Request $request, $id) |
71 | 71 | { |
72 | 72 | $sensor = Sensor::findOrFail($id); |
@@ -75,12 +75,12 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | - * Show the form for editing the specified resource. |
|
79 | - * |
|
80 | - * @param Request $request |
|
81 | - * @param int $id |
|
82 | - * @return Response |
|
83 | - */ |
|
78 | + * Show the form for editing the specified resource. |
|
79 | + * |
|
80 | + * @param Request $request |
|
81 | + * @param int $id |
|
82 | + * @return Response |
|
83 | + */ |
|
84 | 84 | public function edit(Request $request, $id) |
85 | 85 | { |
86 | 86 | $sensor = Sensor::findOrFail($id); |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
92 | - * Update the specified resource in storage. |
|
93 | - * |
|
94 | - * @param Request $request |
|
95 | - * @param int $id |
|
96 | - * @return Response |
|
97 | - */ |
|
92 | + * Update the specified resource in storage. |
|
93 | + * |
|
94 | + * @param Request $request |
|
95 | + * @param int $id |
|
96 | + * @return Response |
|
97 | + */ |
|
98 | 98 | public function update(Request $request, $id) |
99 | 99 | { |
100 | 100 | request()->validate([ |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
111 | - * Remove the specified resource from storage. |
|
112 | - * |
|
113 | - * @param int $id |
|
114 | - * @return Response |
|
115 | - */ |
|
111 | + * Remove the specified resource from storage. |
|
112 | + * |
|
113 | + * @param int $id |
|
114 | + * @return Response |
|
115 | + */ |
|
116 | 116 | public function destroy($id) |
117 | 117 | { |
118 | 118 | Sensor::findOrFail($id)->delete(); |
@@ -117,7 +117,7 @@ |
||
117 | 117 | { |
118 | 118 | Sensor::findOrFail($id)->delete(); |
119 | 119 | return redirect()->route('sensor.index') |
120 | - ->with('success','Sensor deleted successfully'); |
|
120 | + ->with('success', 'Sensor deleted successfully'); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * Store a newly created resource in storage. |
45 | 45 | * |
46 | 46 | * @param Request $request |
47 | - * @return Response |
|
47 | + * @return \Illuminate\Http\RedirectResponse |
|
48 | 48 | */ |
49 | 49 | public function store(Request $request) |
50 | 50 | { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * |
96 | 96 | * @param Request $request |
97 | 97 | * @param int $id |
98 | - * @return Response |
|
98 | + * @return \Illuminate\Http\RedirectResponse |
|
99 | 99 | */ |
100 | 100 | public function update(Request $request, $id) |
101 | 101 | { |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * Remove the specified resource from storage. |
114 | 114 | * |
115 | 115 | * @param int $id |
116 | - * @return Response |
|
116 | + * @return \Illuminate\Http\RedirectResponse |
|
117 | 117 | */ |
118 | 118 | public function destroy($id) |
119 | 119 | { |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use App\Sensor; |
6 | 6 | use App\DataTables\SensorDataTable; |
7 | 7 | use Illuminate\Http\Request; |
8 | -use Validator; |
|
9 | 8 | use Charts; |
10 | 9 | |
11 | 10 | class SensorController extends Controller |
@@ -15,15 +15,15 @@ |
||
15 | 15 | public function dataTable($query) |
16 | 16 | { |
17 | 17 | return datatables($query) |
18 | - ->addColumn('sensor', function ($sensordata) { |
|
19 | - return '<a href="' . route('sensor.show', $sensordata->sensor_id) . '">'. ($sensordata->sensor->name ?? 'null') . '</a>'; |
|
18 | + ->addColumn('sensor', function($sensordata) { |
|
19 | + return '<a href="'.route('sensor.show', $sensordata->sensor_id).'">'.($sensordata->sensor->name ?? 'null').'</a>'; |
|
20 | 20 | }) |
21 | - ->addColumn('device', function ($sensordata) { |
|
22 | - return '<a href="' . route('device.show', $sensordata->sensor->device->id ?? '0') . '">'. ($sensordata->sensor->device->name ?? 'null') . '</a>'; |
|
21 | + ->addColumn('device', function($sensordata) { |
|
22 | + return '<a href="'.route('device.show', $sensordata->sensor->device->id ?? '0').'">'.($sensordata->sensor->device->name ?? 'null').'</a>'; |
|
23 | 23 | }) |
24 | 24 | ->addColumn('action', 'sensordata.action') |
25 | - ->blacklist([ 'action']) |
|
26 | - ->rawColumns(['device', 'sensor', 'action']); |
|
25 | + ->blacklist([ 'action' ]) |
|
26 | + ->rawColumns([ 'device', 'sensor', 'action' ]); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -15,18 +15,18 @@ |
||
15 | 15 | public function dataTable($query) |
16 | 16 | { |
17 | 17 | return datatables($query) |
18 | - ->editColumn('name', function ($sensor) { |
|
19 | - return '<a href="' . route('sensor.show', $sensor->id) . '">'. $sensor->name . '</a>'; |
|
18 | + ->editColumn('name', function($sensor) { |
|
19 | + return '<a href="'.route('sensor.show', $sensor->id).'">'.$sensor->name.'</a>'; |
|
20 | 20 | }) |
21 | - ->editColumn('device_id', function ($sensor) { |
|
22 | - return '<a href="' . route('device.show', $sensor->device_id) . '">'. ($sensor->device->name ?? '') . '</a>'; |
|
21 | + ->editColumn('device_id', function($sensor) { |
|
22 | + return '<a href="'.route('device.show', $sensor->device_id).'">'.($sensor->device->name ?? '').'</a>'; |
|
23 | 23 | }) |
24 | - ->addColumn('value', function ($sensor) { |
|
25 | - return '<a href="' . route('sensordata.show', $sensor->latest_data->id ?? '0') . '">'. ($sensor->latest_data->value ?? 'null') . '</a>'; |
|
24 | + ->addColumn('value', function($sensor) { |
|
25 | + return '<a href="'.route('sensordata.show', $sensor->latest_data->id ?? '0').'">'.($sensor->latest_data->value ?? 'null').'</a>'; |
|
26 | 26 | }) |
27 | 27 | ->addColumn('action', 'sensor.action') |
28 | 28 | ->blacklist([ 'value', 'action' ]) |
29 | - ->rawColumns(['device_id', 'name', 'value', 'action']); |
|
29 | + ->rawColumns([ 'device_id', 'name', 'value', 'action' ]); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -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]); |