Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( 3195c5...0b5ddf )
by Cristian
02:56
created
src/app/Http/Controllers/CrudController.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
 	 * Remove the specified resource from storage.
162 162
 	 *
163 163
 	 * @param  int  $id
164
-	 * @return string
164
+	 * @return \Illuminate\Http\Response
165 165
 	 */
166 166
 	public function destroy($id)
167 167
 	{
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,16 +3,12 @@
 block discarded – undo
3 3
 use Illuminate\Foundation\Bus\DispatchesJobs;
4 4
 use Illuminate\Routing\Controller as BaseController;
5 5
 use Illuminate\Foundation\Validation\ValidatesRequests;
6
-use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
7
-use Illuminate\Support\Facades\Form as Form;
8 6
 use Illuminate\Http\Request;
9 7
 use Backpack\CRUD\Crud;
10
-use Crypt;
11 8
 use Alert;
12 9
 
13 10
 
14 11
 // VALIDATION: change the requests to match your own file names if you need form validation
15
-use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest;
16 12
 use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest;
17 13
 
18 14
 class CrudController extends BaseController {
Please login to merge, or discard this patch.
Indentation   +224 added lines, -224 removed lines patch added patch discarded remove patch
@@ -17,232 +17,232 @@
 block discarded – undo
17 17
 
18 18
 class CrudController extends BaseController {
19 19
 
20
-	use DispatchesJobs, ValidatesRequests;
21
-
22
-	public $data = [];
23
-	public $crud;
24
-
25
-	public function __construct()
26
-	{
27
-		$this->crud = new Crud();
28
-	}
29
-
30
-	/**
31
-	 * Display all rows in the database for this entity.
32
-	 *
33
-	 * @return Response
34
-	 */
35
-	public function index()
36
-	{
37
-		$this->crud->hasAccessOrFail('list');
38
-
39
-		$this->data['entries'] = $this->crud->getEntries();
40
-		$this->data['crud'] = $this->crud;
41
-		$this->data['title'] = ucfirst($this->crud->entity_name_plural);
42
-
43
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
44
-		return view('crud::list', $this->data);
45
-	}
46
-
47
-
48
-	/**
49
-	 * Show the form for creating inserting a new row.
50
-	 *
51
-	 * @return Response
52
-	 */
53
-	public function create()
54
-	{
55
-		$this->crud->hasAccessOrFail('create');
56
-
57
-		// prepare the fields you need to show
58
-		$this->data['crud'] = $this->crud;
59
-		$this->data['fields'] = $this->crud->getCreateFields();
60
-		$this->data['title'] = trans('backpack::crud.add').' '.$this->crud->entity_name;
61
-
62
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
63
-		return view('crud::create', $this->data);
64
-	}
65
-
66
-
67
-	/**
68
-	 * Store a newly created resource in the database.
69
-	 *
70
-	 * @param  StoreRequest  $request - type injection used for validation using Requests
71
-	 * @return \Illuminate\Http\RedirectResponse
72
-	 */
73
-	public function storeCrud(StoreRequest $request = null)
74
-	{
75
-		$this->crud->hasAccessOrFail('create');
20
+    use DispatchesJobs, ValidatesRequests;
21
+
22
+    public $data = [];
23
+    public $crud;
24
+
25
+    public function __construct()
26
+    {
27
+        $this->crud = new Crud();
28
+    }
29
+
30
+    /**
31
+     * Display all rows in the database for this entity.
32
+     *
33
+     * @return Response
34
+     */
35
+    public function index()
36
+    {
37
+        $this->crud->hasAccessOrFail('list');
38
+
39
+        $this->data['entries'] = $this->crud->getEntries();
40
+        $this->data['crud'] = $this->crud;
41
+        $this->data['title'] = ucfirst($this->crud->entity_name_plural);
42
+
43
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
44
+        return view('crud::list', $this->data);
45
+    }
46
+
47
+
48
+    /**
49
+     * Show the form for creating inserting a new row.
50
+     *
51
+     * @return Response
52
+     */
53
+    public function create()
54
+    {
55
+        $this->crud->hasAccessOrFail('create');
56
+
57
+        // prepare the fields you need to show
58
+        $this->data['crud'] = $this->crud;
59
+        $this->data['fields'] = $this->crud->getCreateFields();
60
+        $this->data['title'] = trans('backpack::crud.add').' '.$this->crud->entity_name;
61
+
62
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
63
+        return view('crud::create', $this->data);
64
+    }
65
+
66
+
67
+    /**
68
+     * Store a newly created resource in the database.
69
+     *
70
+     * @param  StoreRequest  $request - type injection used for validation using Requests
71
+     * @return \Illuminate\Http\RedirectResponse
72
+     */
73
+    public function storeCrud(StoreRequest $request = null)
74
+    {
75
+        $this->crud->hasAccessOrFail('create');
76 76
 
77 77
 		
78
-		// insert item in the db
79
-		$item = $this->crud->create(\Request::except(['redirect_after_save', 'password']));
80
-
81
-
82
-		// show a success message
83
-		\Alert::success(trans('backpack::crud.insert_success'))->flash();
84
-
85
-		// redirect the user where he chose to be redirected
86
-		switch (\Request::input('redirect_after_save')) {
87
-			case 'current_item_edit':
88
-				return \Redirect::to($this->crud->route.'/'.$item->id.'/edit');
89
-
90
-			default:
91
-				return \Redirect::to(\Request::input('redirect_after_save'));
92
-		}
93
-	}
94
-
95
-
96
-	/**
97
-	 * Show the form for editing the specified resource.
98
-	 *
99
-	 * @param  int  $id
100
-	 * @return Response
101
-	 */
102
-	public function edit($id)
103
-	{
104
-		$this->crud->hasAccessOrFail('update');
105
-
106
-		// get the info for that entry
107
-		$this->data['entry'] = $this->crud->getEntry($id);
108
-		$this->data['crud'] = $this->crud;
109
-		$this->data['fields'] = $this->crud->getUpdateFields($id);
110
-		$this->data['title'] = trans('backpack::crud.edit').' '.$this->crud->entity_name;
111
-
112
-		$this->data['id'] = $id;
113
-
114
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
115
-		return view('crud::edit', $this->data);
116
-	}
117
-
118
-
119
-	/**
120
-	 * Update the specified resource in the database.
121
-	 *
122
-	 * @param  UpdateRequest  $request - type injection used for validation using Requests
123
-	 * @return \Illuminate\Http\RedirectResponse
124
-	 */
125
-	public function updateCrud(UpdateRequest $request = null)
126
-	{
127
-		$this->crud->hasAccessOrFail('update');
128
-
129
-		// update the row in the db
130
-
131
-		$this->crud->update(\Request::get('id'), \Request::except('redirect_after_save'));
132
-
133
-		// show a success message
134
-		\Alert::success(trans('backpack::crud.update_success'))->flash();
135
-
136
-		return \Redirect::to($this->crud->route);
137
-	}
138
-
139
-
140
-	/**
141
-	 * Display the specified resource.
142
-	 *
143
-	 * @param  int  $id
144
-	 * @return Response
145
-	 */
146
-	public function show($id)
147
-	{
148
-		$this->crud->hasAccessOrFail('show');
149
-
150
-		// get the info for that entry
151
-		$this->data['entry'] = $this->crud->getEntry($id);
152
-		$this->data['crud'] = $this->crud;
153
-		$this->data['title'] = trans('backpack::crud.preview').' '.$this->crud->entity_name;
154
-
155
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
156
-		return view('crud::show', $this->data);
157
-	}
158
-
159
-
160
-	/**
161
-	 * Remove the specified resource from storage.
162
-	 *
163
-	 * @param  int  $id
164
-	 * @return string
165
-	 */
166
-	public function destroy($id)
167
-	{
168
-		$this->crud->hasAccessOrFail('delete');
169
-		return $this->crud->delete($id);
170
-	}
171
-
172
-
173
-	/**
174
-	 *  Reorder the items in the database using the Nested Set pattern.
175
-	 *
176
-	 *	Database columns needed: id, parent_id, lft, rgt, depth, name/title
177
-	 *
178
-	 *  @return Response
179
-	 */
180
-	public function reorder($lang = false)
181
-	{
182
-		$this->crud->hasAccessOrFail('reorder');
183
-
184
-		if (!$this->crud->isReorderEnabled()) {
185
-			abort(403, 'Reorder is disabled.');
186
-		}
187
-
188
-		if ($lang == false)
189
-		{
190
-			$lang = \Lang::locale();
191
-		}
192
-
193
-		// get all results for that entity
194
-		$this->data['entries'] = $this->crud->getEntries();
195
-		$this->data['crud'] = $this->crud;
196
-		$this->data['title'] = trans('backpack::crud.reorder').' '.$this->crud->entity_name;
197
-
198
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
199
-		return view('crud::reorder', $this->data);
200
-	}
201
-
202
-
203
-	/**
204
-	 * Save the new order, using the Nested Set pattern.
205
-	 *
206
-	 * Database columns needed: id, parent_id, lft, rgt, depth, name/title
207
-	 *
208
-	 * @return
209
-	 */
210
-	public function saveReorder()
211
-	{
212
-		$this->crud->hasAccessOrFail('reorder');
213
-
214
-		$all_entries = \Request::input('tree');
215
-
216
-		if (count($all_entries)) {
217
-			$count = $this->crud->updateTreeOrder($all_entries);
218
-		} else
219
-		{
220
-			return false;
221
-		}
222
-
223
-		return 'success for '.$count." items";
224
-	}
225
-
226
-
227
-	/**
228
-	 * Used with AJAX in the list view (datatables) to show extra information about that row that didn't fit in the table.
229
-	 * It defaults to showing some dummy text.
230
-	 *
231
-	 * It's enabled by:
232
-	 * - setting: $crud->details_row = true;
233
-	 * - adding the details route for the entity; ex: Route::get('page/{id}/details', 'PageCrudController@showDetailsRow');
234
-	 * - adding a view with the following name to change what the row actually contains: app/resources/views/vendor/backpack/crud/details_row.blade.php
235
-	 */
236
-	public function showDetailsRow($id)
237
-	{
238
-		$this->crud->hasAccessOrFail('details_row');
239
-
240
-		$this->data['entry'] = $this->crud->getEntry($id);
241
-		$this->data['crud'] = $this->crud;
242
-
243
-		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
244
-		return view('crud::details_row', $this->data);
245
-	}
78
+        // insert item in the db
79
+        $item = $this->crud->create(\Request::except(['redirect_after_save', 'password']));
80
+
81
+
82
+        // show a success message
83
+        \Alert::success(trans('backpack::crud.insert_success'))->flash();
84
+
85
+        // redirect the user where he chose to be redirected
86
+        switch (\Request::input('redirect_after_save')) {
87
+            case 'current_item_edit':
88
+                return \Redirect::to($this->crud->route.'/'.$item->id.'/edit');
89
+
90
+            default:
91
+                return \Redirect::to(\Request::input('redirect_after_save'));
92
+        }
93
+    }
94
+
95
+
96
+    /**
97
+     * Show the form for editing the specified resource.
98
+     *
99
+     * @param  int  $id
100
+     * @return Response
101
+     */
102
+    public function edit($id)
103
+    {
104
+        $this->crud->hasAccessOrFail('update');
105
+
106
+        // get the info for that entry
107
+        $this->data['entry'] = $this->crud->getEntry($id);
108
+        $this->data['crud'] = $this->crud;
109
+        $this->data['fields'] = $this->crud->getUpdateFields($id);
110
+        $this->data['title'] = trans('backpack::crud.edit').' '.$this->crud->entity_name;
111
+
112
+        $this->data['id'] = $id;
113
+
114
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
115
+        return view('crud::edit', $this->data);
116
+    }
117
+
118
+
119
+    /**
120
+     * Update the specified resource in the database.
121
+     *
122
+     * @param  UpdateRequest  $request - type injection used for validation using Requests
123
+     * @return \Illuminate\Http\RedirectResponse
124
+     */
125
+    public function updateCrud(UpdateRequest $request = null)
126
+    {
127
+        $this->crud->hasAccessOrFail('update');
128
+
129
+        // update the row in the db
130
+
131
+        $this->crud->update(\Request::get('id'), \Request::except('redirect_after_save'));
132
+
133
+        // show a success message
134
+        \Alert::success(trans('backpack::crud.update_success'))->flash();
135
+
136
+        return \Redirect::to($this->crud->route);
137
+    }
138
+
139
+
140
+    /**
141
+     * Display the specified resource.
142
+     *
143
+     * @param  int  $id
144
+     * @return Response
145
+     */
146
+    public function show($id)
147
+    {
148
+        $this->crud->hasAccessOrFail('show');
149
+
150
+        // get the info for that entry
151
+        $this->data['entry'] = $this->crud->getEntry($id);
152
+        $this->data['crud'] = $this->crud;
153
+        $this->data['title'] = trans('backpack::crud.preview').' '.$this->crud->entity_name;
154
+
155
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
156
+        return view('crud::show', $this->data);
157
+    }
158
+
159
+
160
+    /**
161
+     * Remove the specified resource from storage.
162
+     *
163
+     * @param  int  $id
164
+     * @return string
165
+     */
166
+    public function destroy($id)
167
+    {
168
+        $this->crud->hasAccessOrFail('delete');
169
+        return $this->crud->delete($id);
170
+    }
171
+
172
+
173
+    /**
174
+     *  Reorder the items in the database using the Nested Set pattern.
175
+     *
176
+     *	Database columns needed: id, parent_id, lft, rgt, depth, name/title
177
+     *
178
+     *  @return Response
179
+     */
180
+    public function reorder($lang = false)
181
+    {
182
+        $this->crud->hasAccessOrFail('reorder');
183
+
184
+        if (!$this->crud->isReorderEnabled()) {
185
+            abort(403, 'Reorder is disabled.');
186
+        }
187
+
188
+        if ($lang == false)
189
+        {
190
+            $lang = \Lang::locale();
191
+        }
192
+
193
+        // get all results for that entity
194
+        $this->data['entries'] = $this->crud->getEntries();
195
+        $this->data['crud'] = $this->crud;
196
+        $this->data['title'] = trans('backpack::crud.reorder').' '.$this->crud->entity_name;
197
+
198
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
199
+        return view('crud::reorder', $this->data);
200
+    }
201
+
202
+
203
+    /**
204
+     * Save the new order, using the Nested Set pattern.
205
+     *
206
+     * Database columns needed: id, parent_id, lft, rgt, depth, name/title
207
+     *
208
+     * @return
209
+     */
210
+    public function saveReorder()
211
+    {
212
+        $this->crud->hasAccessOrFail('reorder');
213
+
214
+        $all_entries = \Request::input('tree');
215
+
216
+        if (count($all_entries)) {
217
+            $count = $this->crud->updateTreeOrder($all_entries);
218
+        } else
219
+        {
220
+            return false;
221
+        }
222
+
223
+        return 'success for '.$count." items";
224
+    }
225
+
226
+
227
+    /**
228
+     * Used with AJAX in the list view (datatables) to show extra information about that row that didn't fit in the table.
229
+     * It defaults to showing some dummy text.
230
+     *
231
+     * It's enabled by:
232
+     * - setting: $crud->details_row = true;
233
+     * - adding the details route for the entity; ex: Route::get('page/{id}/details', 'PageCrudController@showDetailsRow');
234
+     * - adding a view with the following name to change what the row actually contains: app/resources/views/vendor/backpack/crud/details_row.blade.php
235
+     */
236
+    public function showDetailsRow($id)
237
+    {
238
+        $this->crud->hasAccessOrFail('details_row');
239
+
240
+        $this->data['entry'] = $this->crud->getEntry($id);
241
+        $this->data['crud'] = $this->crud;
242
+
243
+        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
244
+        return view('crud::details_row', $this->data);
245
+    }
246 246
 
247 247
 
248 248
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/ExampleCrudController.php 3 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,8 @@
 block discarded – undo
1 1
 <?php namespace App\Http\Controllers\Admin;
2 2
 
3
-use App\Http\Requests;
4
-use App\Http\Controllers\Controller;
5 3
 use Backpack\CRUD\app\Http\Controllers\CrudController;
6
-use Illuminate\Http\Request;
7 4
 
8 5
 // VALIDATION: change the requests to match your own file names if you need form validation
9
-use Backpack\CRUD\app\Http\Requests\CrudRequest as StoreRequest;
10 6
 use Backpack\CRUD\app\Http\Requests\CrudRequest as UpdateRequest;
11 7
 
12 8
 class ExampleCrudController extends CrudController {
Please login to merge, or discard this patch.
Indentation   +94 added lines, -94 removed lines patch added patch discarded remove patch
@@ -11,17 +11,17 @@  discard block
 block discarded – undo
11 11
 
12 12
 class ExampleCrudController extends CrudController {
13 13
 
14
-	public function __construct() {
14
+    public function __construct() {
15 15
         parent::__construct();
16 16
 
17
-		/*
17
+        /*
18 18
 	    |--------------------------------------------------------------------------
19 19
 	    |                                   API
20 20
 	    |--------------------------------------------------------------------------
21 21
 	    */
22 22
 
23 23
 
24
-		// USAGE LEVEL 1 - ALWAYS	================================================== LEVEL 1
24
+        // USAGE LEVEL 1 - ALWAYS	================================================== LEVEL 1
25 25
         $this->crud->setModel("App\Models\Example");
26 26
         $this->crud->setRoute("admin/example");
27 27
         // $this->crud->setRouteName("admin.example");
@@ -33,45 +33,45 @@  discard block
 block discarded – undo
33 33
 
34 34
 
35 35
 
36
-		// USAGE LEVEL 2 - OFTEN	================================================== LEVEL 2
36
+        // USAGE LEVEL 2 - OFTEN	================================================== LEVEL 2
37 37
 
38 38
 
39 39
         // ------ FIELDS (the last parameter is always the form - create/update/both)
40
-	    // TODO: $this->crud->addField('name', $options, 'update/create/both');
41
-	    // TODO: $this->crud->addFields($array_of_arrays, 'update/create/both');
42
-	    // TODO: $this->crud->removeField('name', 'update/create/both');
43
-	    // TODO: $this->crud->removeFields($array_of_names, 'update/create/both');
44
-	    // TODO: $this->crud->replaceField('name', 'update/create/both');
40
+        // TODO: $this->crud->addField('name', $options, 'update/create/both');
41
+        // TODO: $this->crud->addFields($array_of_arrays, 'update/create/both');
42
+        // TODO: $this->crud->removeField('name', 'update/create/both');
43
+        // TODO: $this->crud->removeFields($array_of_names, 'update/create/both');
44
+        // TODO: $this->crud->replaceField('name', 'update/create/both');
45 45
 
46
-	    // TODO: $this->crud->setRequiredFields(['field_1', 'field_2'], 'update/create/both');
47
-	    // TODO: $this->crud->setRequiredField('field_1', 'update/create/both');
48
-	    // TODO: $this->crud->getRequiredFields();
46
+        // TODO: $this->crud->setRequiredFields(['field_1', 'field_2'], 'update/create/both');
47
+        // TODO: $this->crud->setRequiredField('field_1', 'update/create/both');
48
+        // TODO: $this->crud->getRequiredFields();
49 49
 
50
-	    // TODO: $this->crud->setFieldOrder(['field_1', 'field_2', 'field_3'], 'update/create/both');
50
+        // TODO: $this->crud->setFieldOrder(['field_1', 'field_2', 'field_3'], 'update/create/both');
51 51
 
52 52
 
53 53
         // ------ COLUMNS
54
-	    // $this->crud->addColumn(); // add a single column, at the end of the stack
55
-	    // $this->crud->addColumns(); // add multiple columns, at the end of the stack
56
-	    // $this->crud->removeColumn('column_name'); // remove a column from the stack
57
-	    // $this->crud->removeColumns(['column_name_1', 'column_name_2']); // remove an array of columns from the stack
58
-	    // $this->crud->setColumnDetails('column_name', ['attribute' => 'value']);
59
-	    // $this->crud->setColumnsDetails(['column_1', 'column_2'], ['attribute' => 'value']);
60
-	    // TODO: $this->crud->setColumnOrder(['column_1', 'column_2', 'column_3']);
54
+        // $this->crud->addColumn(); // add a single column, at the end of the stack
55
+        // $this->crud->addColumns(); // add multiple columns, at the end of the stack
56
+        // $this->crud->removeColumn('column_name'); // remove a column from the stack
57
+        // $this->crud->removeColumns(['column_name_1', 'column_name_2']); // remove an array of columns from the stack
58
+        // $this->crud->setColumnDetails('column_name', ['attribute' => 'value']);
59
+        // $this->crud->setColumnsDetails(['column_1', 'column_2'], ['attribute' => 'value']);
60
+        // TODO: $this->crud->setColumnOrder(['column_1', 'column_2', 'column_3']);
61 61
 
62 62
 
63
-	    // ------ FIELDS AND COLUMNS
64
-	    // TODO: $this->crud->setLabel('column_name/field_name', 'New Label'); // changes label for columns, create&update fields
63
+        // ------ FIELDS AND COLUMNS
64
+        // TODO: $this->crud->setLabel('column_name/field_name', 'New Label'); // changes label for columns, create&update fields
65 65
 
66 66
 
67 67
         // ------ ACCESS
68
-	    // $this->crud->allowAccess('list');
69
-	    // $this->crud->allowAccess(['list', 'create', 'delete']);
70
-	    // $this->crud->denyAccess('list');
71
-	    // $this->crud->denyAccess(['list', 'create', 'delete']);
68
+        // $this->crud->allowAccess('list');
69
+        // $this->crud->allowAccess(['list', 'create', 'delete']);
70
+        // $this->crud->denyAccess('list');
71
+        // $this->crud->denyAccess(['list', 'create', 'delete']);
72 72
 
73
-	    // $this->crud->hasAccess('add'); // returns true/false
74
-	    // $this->crud->hasAccessOrFail('add'); // throws 403 error
73
+        // $this->crud->hasAccess('add'); // returns true/false
74
+        // $this->crud->hasAccessOrFail('add'); // throws 403 error
75 75
 
76 76
 
77 77
         // ------ REORDER
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
 
85 85
         // ------ DETAILS ROW
86
-  		// $this->crud->enableDetailsRow();
86
+            // $this->crud->enableDetailsRow();
87 87
         // NOTE: you also need to do allow access to the right users: $this->crud->allowAccess('details_row');
88 88
         // NOTE: you also need to do overwrite the showDetailsRow($id) method in your EntityCrudController to show whatever you'd like in the details row OR overwrite the views/backpack/crud/details_row.blade.php
89 89
 
@@ -92,101 +92,101 @@  discard block
 block discarded – undo
92 92
 
93 93
         // ------ ADVANCED QUERIES
94 94
         // $this->crud->addClause('active');
95
-	    // $this->crud->addClause('type', 'car');
96
-	    // $this->crud->addClause('where', 'name', '==', 'car');
97
-	    // $this->crud->addClause('whereName', 'car');
98
-	    // $this->crud->addClause('whereHas', 'posts', function($query) {
99
-	    //     $query->activePosts();
100
-	    // });
95
+        // $this->crud->addClause('type', 'car');
96
+        // $this->crud->addClause('where', 'name', '==', 'car');
97
+        // $this->crud->addClause('whereName', 'car');
98
+        // $this->crud->addClause('whereHas', 'posts', function($query) {
99
+        //     $query->activePosts();
100
+        // });
101 101
         // $this->crud->orderBy();
102 102
         // $this->crud->groupBy();
103 103
         // $this->crud->limit();
104 104
 
105 105
 
106 106
 
107
-		// USAGE LEVEL 3 - SOMETIMES	==============================================  LEVEL 3
107
+        // USAGE LEVEL 3 - SOMETIMES	==============================================  LEVEL 3
108 108
 
109 109
         // TODO: $this->crud->setButtons(); // default includes edit and delete, with their name, icon, permission, link and class (btn-default)
110
-	    // TODO: $this->crud->addButton();
111
-	    // TODO: $this->crud->removeButton();
112
-	    // TODO: $this->crud->replaceButton();
110
+        // TODO: $this->crud->addButton();
111
+        // TODO: $this->crud->removeButton();
112
+        // TODO: $this->crud->replaceButton();
113 113
 
114 114
 
115 115
 
116
-		// USAGE LEVEL 4 - RARELY	==================================================  LEVEL 4
116
+        // USAGE LEVEL 4 - RARELY	==================================================  LEVEL 4
117 117
 
118
-		// $this->crud->getEntry($entry_id);
119
-		// $this->crud->getEntries();
118
+        // $this->crud->getEntry($entry_id);
119
+        // $this->crud->getEntries();
120 120
 
121
-		// $this->crud->getFields('create/update/both');
121
+        // $this->crud->getFields('create/update/both');
122 122
 
123
-		// $this->crud->create($entry_request);
124
-		// $this->crud->update($entry_id, $entry_request);
125
-		// $this->crud->delete($entry_id);
123
+        // $this->crud->create($entry_request);
124
+        // $this->crud->update($entry_id, $entry_request);
125
+        // $this->crud->delete($entry_id);
126 126
 
127 127
 
128
-		// USAGE LEVEL 5 - ALMOST NEVER	==============================================  LEVEL 5
128
+        // USAGE LEVEL 5 - ALMOST NEVER	==============================================  LEVEL 5
129 129
 
130
-		// $this->crud->updateTreeOrder($all_entries);
130
+        // $this->crud->updateTreeOrder($all_entries);
131 131
 
132 132
 
133 133
 
134 134
 
135 135
         // ------------------------
136
-		// MEANWHILE THIS WILL WORK
137
-		// ------------------------
136
+        // MEANWHILE THIS WILL WORK
137
+        // ------------------------
138 138
 
139 139
 
140 140
         $this->crud->reorder = true;
141
-		$this->crud->reorder_label = "name";
142
-		$this->crud->reorder_max_level = 3;
143
-		$this->crud->details_row = true;
144
-		// $this->crud->permissions = ['add', 'list', 'edit', 'delete', 'show'];
141
+        $this->crud->reorder_label = "name";
142
+        $this->crud->reorder_max_level = 3;
143
+        $this->crud->details_row = true;
144
+        // $this->crud->permissions = ['add', 'list', 'edit', 'delete', 'show'];
145 145
 
146 146
         $this->crud->columns = [
147
-									[
148
-										'name' => 'name',
149
-										'label' => "Example item text"
150
-									],
151
-									[
152
-										'label' => "Parent",
153
-										'type' => 'select',
154
-										'name' => 'parent_id',
155
-										'entity' => 'parent',
156
-										'attribute' => 'name',
157
-										'model' => "App\Models\Example"
158
-									],
159
-								];
160
-		$this->crud->fields =  [
161
-								[
162
-									'name' => 'name',
163
-									'label' => "Example item text"
164
-								],
165
-								[
166
-									'label' => "Parent",
167
-									'type' => 'select',
168
-									'name' => 'parent_id',
169
-									'entity' => 'parent',
170
-									'attribute' => 'name',
171
-									'model' => "App\Models\Example"
172
-								],
173
-								[
174
-								    'name' => 'type',
175
-								    'label' => "Type",
176
-								    'type' => 'page_or_link'
177
-								],
178
-							];
147
+                                    [
148
+                                        'name' => 'name',
149
+                                        'label' => "Example item text"
150
+                                    ],
151
+                                    [
152
+                                        'label' => "Parent",
153
+                                        'type' => 'select',
154
+                                        'name' => 'parent_id',
155
+                                        'entity' => 'parent',
156
+                                        'attribute' => 'name',
157
+                                        'model' => "App\Models\Example"
158
+                                    ],
159
+                                ];
160
+        $this->crud->fields =  [
161
+                                [
162
+                                    'name' => 'name',
163
+                                    'label' => "Example item text"
164
+                                ],
165
+                                [
166
+                                    'label' => "Parent",
167
+                                    'type' => 'select',
168
+                                    'name' => 'parent_id',
169
+                                    'entity' => 'parent',
170
+                                    'attribute' => 'name',
171
+                                    'model' => "App\Models\Example"
172
+                                ],
173
+                                [
174
+                                    'name' => 'type',
175
+                                    'label' => "Type",
176
+                                    'type' => 'page_or_link'
177
+                                ],
178
+                            ];
179 179
 
180 180
     }
181 181
 
182
-	public function store(StoreRequest $request)
183
-	{
184
-		return parent::storeCrud();
185
-	}
182
+    public function store(StoreRequest $request)
183
+    {
184
+        return parent::storeCrud();
185
+    }
186 186
 
187
-	public function update(UpdateRequest $request)
188
-	{
189
-		return parent::updateCrud();
190
-	}
187
+    public function update(UpdateRequest $request)
188
+    {
189
+        return parent::updateCrud();
190
+    }
191 191
 
192 192
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
 										'model' => "App\Models\Example"
158 158
 									],
159 159
 								];
160
-		$this->crud->fields =  [
160
+		$this->crud->fields = [
161 161
 								[
162 162
 									'name' => 'name',
163 163
 									'label' => "Example item text"
Please login to merge, or discard this patch.
src/app/Http/Controllers/ToneCrudNestedController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * Store a newly created resource in storage.
55 55
      *
56 56
      * @param  \Illuminate\Http\Request  $request
57
-     * @return \Illuminate\Http\Response
57
+     * @return \Illuminate\Http\RedirectResponse
58 58
      */
59 59
     public function crudStore(Request $request = null)
60 60
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      *
102 102
      * @param  \Illuminate\Http\Request  $request
103 103
      * @param  int  $id
104
-     * @return \Illuminate\Http\Response
104
+     * @return \Illuminate\Http\RedirectResponse
105 105
      */
106 106
     public function crudUpdate($parentId, $id, Request $request = null)
107 107
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,10 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 namespace Backpack\Crud\Http\Controllers;
6 6
 
7
-use Illuminate\Foundation\Bus\DispatchesJobs;
8 7
 use Illuminate\Routing\Controller as BaseController;
9
-use Illuminate\Foundation\Validation\ValidatesRequests;
10
-use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
11 8
 use Backpack\Crud\Crud;
12 9
 
13 10
 /**
Please login to merge, or discard this patch.
src/resources/views/reorder.blade.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -20,42 +20,42 @@  discard block
 block discarded – undo
20 20
 
21 21
 @section('content')
22 22
 <?php
23
-  function tree_element($entry, $key, $all_entries, $crud)
24
-  {
23
+    function tree_element($entry, $key, $all_entries, $crud)
24
+    {
25 25
     if (!isset($entry->tree_element_shown)) {
26
-      // mark the element as shown
27
-      $all_entries[$key]->tree_element_shown = true;
28
-      $entry->tree_element_shown = true;
26
+        // mark the element as shown
27
+        $all_entries[$key]->tree_element_shown = true;
28
+        $entry->tree_element_shown = true;
29 29
 
30
-      // show the tree element
31
-      echo '<li id="list_'.$entry->id.'">';
32
-      echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>';
30
+        // show the tree element
31
+        echo '<li id="list_'.$entry->id.'">';
32
+        echo '<div><span class="disclose"><span></span></span>'.$entry->{$crud->reorder_label}.'</div>';
33 33
 
34
-      // see if this element has any children
35
-      $children = [];
36
-      foreach ($all_entries as $key => $subentry) {
34
+        // see if this element has any children
35
+        $children = [];
36
+        foreach ($all_entries as $key => $subentry) {
37 37
         if ($subentry->parent_id == $entry->id) {
38
-          $children[] = $subentry;
38
+            $children[] = $subentry;
39
+        }
39 40
         }
40
-      }
41 41
 
42
-      $children = collect($children)->sortBy('lft');
42
+        $children = collect($children)->sortBy('lft');
43 43
 
44
-      // if it does have children, show them
45
-      if (count($children)) {
44
+        // if it does have children, show them
45
+        if (count($children)) {
46 46
         echo '<ol>';
47 47
         foreach ($children as $key => $child) {
48
-          $children[$key] = tree_element($child, $child->id, $all_entries, $crud);
48
+            $children[$key] = tree_element($child, $child->id, $all_entries, $crud);
49 49
         }
50 50
         echo '</ol>';
51
-      }
52
-      echo '</li>';
51
+        }
52
+        echo '</li>';
53 53
     }
54 54
 
55 55
     return $entry;
56
-  }
56
+    }
57 57
 
58
- ?>
58
+    ?>
59 59
 <div class="row">
60 60
   <div class="col-md-8 col-md-offset-2">
61 61
     @if ($crud->hasAccess('list'))
@@ -87,15 +87,15 @@  discard block
 block discarded – undo
87 87
 
88 88
           <ol class="sortable">
89 89
             <?php
90
-              $all_entries = collect($entries->all())->sortBy('lft')->keyBy('id');
91
-              $root_entries = $all_entries->filter(function($item) {
90
+                $all_entries = collect($entries->all())->sortBy('lft')->keyBy('id');
91
+                $root_entries = $all_entries->filter(function($item) {
92 92
                 return $item->parent_id == 0;
93
-              });
94
-             ?>
93
+                });
94
+                ?>
95 95
             @foreach ($root_entries as $key => $entry)
96 96
               <?php
97 97
                 $root_entries[$key] = tree_element($entry, $key, $all_entries, $crud);
98
-              ?>
98
+                ?>
99 99
             @endforeach
100 100
           </ol>
101 101
 
Please login to merge, or discard this patch.
src/resources/views/fields/checklist_dependency.blade.php 3 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -2,34 +2,34 @@  discard block
 block discarded – undo
2 2
   <div class="form-group checklist_dependency"  data-entity ="{{ $field['field_unique_name'] }}">
3 3
     <label>{{ $field['label'] }}</label>
4 4
     <?php 
5
-      $entity_model = $crud->getModel();
5
+        $entity_model = $crud->getModel();
6 6
 
7
-      //short name for dependency fields
8
-      $primary_dependency = $field['dependencies']['primary'];
9
-      $secondary_dependency = $field['dependencies']['secondary'];
7
+        //short name for dependency fields
8
+        $primary_dependency = $field['dependencies']['primary'];
9
+        $secondary_dependency = $field['dependencies']['secondary'];
10 10
 
11 11
 
12
-      //all items with relation
13
-      $dependencies = $primary_dependency['model']::with($primary_dependency['entity_secondary'])->get();
12
+        //all items with relation
13
+        $dependencies = $primary_dependency['model']::with($primary_dependency['entity_secondary'])->get();
14 14
 
15
-      $dependencyArray = [];
15
+        $dependencyArray = [];
16 16
 
17
-      //convert dependency array to simple matrix ( prymary id as key and array with secondaries id )
18
-      foreach($dependencies as $primary){
19
-          $dependencyArray[$primary->id] = [];
17
+        //convert dependency array to simple matrix ( prymary id as key and array with secondaries id )
18
+        foreach($dependencies as $primary){
19
+            $dependencyArray[$primary->id] = [];
20 20
         foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){
21 21
             $dependencyArray[$primary->id][] = $secondary->id;
22 22
         }
23
-      }
23
+        }
24 24
 
25
-      //for update form, get initial state of the entity
26
-      if( isset($id) && $id ){
25
+        //for update form, get initial state of the entity
26
+        if( isset($id) && $id ){
27 27
         
28 28
         //get entity with relations for primary dependency
29 29
         $entity_dependencies = $entity_model->with($primary_dependency['entity'])
30
-          ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary'])
31
-          ->where('id', $id)
32
-          ->first();
30
+            ->with($primary_dependency['entity'].'.'.$primary_dependency['entity_secondary'])
31
+            ->where('id', $id)
32
+            ->first();
33 33
 
34 34
         $secondaries_from_primary = [];
35 35
         
@@ -40,23 +40,23 @@  discard block
 block discarded – undo
40 40
         
41 41
         //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist
42 42
         if( old($primary_dependency['name']) ) {
43
-          foreach( old($primary_dependency['name']) as $primary_item ){
43
+            foreach( old($primary_dependency['name']) as $primary_item ){
44 44
             foreach($dependencyArray[$primary_item] as $second_item ){
45 45
                 $secondary_ids[$second_item] = $second_item;
46 46
             }
47
-          }
47
+            }
48 48
         }else{ //create dependecies from relation if not from validate error
49
-          foreach( $primary_array as $primary_item ){
49
+            foreach( $primary_array as $primary_item ){
50 50
             foreach($primary_item[$secondary_dependency['entity']] as $second_item ){
51 51
                 $secondary_ids[$second_item['id']] = $second_item['id'];
52 52
             }
53
-          }
53
+            }
54 54
         }
55 55
 
56
-      }
56
+        }
57 57
 
58
-      //json encode of dependency matrix
59
-      $dependencyJson = json_encode($dependencyArray);
58
+        //json encode of dependency matrix
59
+        $dependencyJson = json_encode($dependencyArray);
60 60
     ?>
61 61
     <script>
62 62
      var  {{ $field['field_unique_name'] }} = {!! $dependencyJson !!};
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@  discard block
 block discarded – undo
15 15
       $dependencyArray = [];
16 16
 
17 17
       //convert dependency array to simple matrix ( prymary id as key and array with secondaries id )
18
-      foreach($dependencies as $primary){
18
+      foreach ($dependencies as $primary) {
19 19
           $dependencyArray[$primary->id] = [];
20
-        foreach($primary->{$primary_dependency['entity_secondary']} as $secondary){
20
+        foreach ($primary->{$primary_dependency['entity_secondary']} as $secondary) {
21 21
             $dependencyArray[$primary->id][] = $secondary->id;
22 22
         }
23 23
       }
24 24
 
25 25
       //for update form, get initial state of the entity
26
-      if( isset($id) && $id ){
26
+      if (isset($id) && $id) {
27 27
         
28 28
         //get entity with relations for primary dependency
29 29
         $entity_dependencies = $entity_model->with($primary_dependency['entity'])
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
         $secondary_ids = [];
40 40
         
41 41
         //create secondary dependency from primary relation, used to check what chekbox must be check from second checklist
42
-        if( old($primary_dependency['name']) ) {
43
-          foreach( old($primary_dependency['name']) as $primary_item ){
44
-            foreach($dependencyArray[$primary_item] as $second_item ){
42
+        if (old($primary_dependency['name'])) {
43
+          foreach (old($primary_dependency['name']) as $primary_item) {
44
+            foreach ($dependencyArray[$primary_item] as $second_item) {
45 45
                 $secondary_ids[$second_item] = $second_item;
46 46
             }
47 47
           }
48
-        }else{ //create dependecies from relation if not from validate error
49
-          foreach( $primary_array as $primary_item ){
50
-            foreach($primary_item[$secondary_dependency['entity']] as $second_item ){
48
+        } else { //create dependecies from relation if not from validate error
49
+          foreach ($primary_array as $primary_item) {
50
+            foreach ($primary_item[$secondary_dependency['entity']] as $second_item) {
51 51
                 $secondary_ids[$second_item['id']] = $second_item['id'];
52 52
             }
53 53
           }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                 $secondary_ids[$second_item] = $second_item;
46 46
             }
47 47
           }
48
-        }else{ //create dependecies from relation if not from validate error
48
+        } else{ //create dependecies from relation if not from validate error
49 49
           foreach( $primary_array as $primary_item ){
50 50
             foreach($primary_item[$secondary_dependency['entity']] as $second_item ){
51 51
                 $secondary_ids[$second_item['id']] = $second_item['id'];
Please login to merge, or discard this patch.
src/resources/views/fields/checklist.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <!-- select2 -->
2 2
   <div class="form-group">
3 3
     <label>{{ $field['label'] }}</label>
4
-    <?php $entity_model = $crud->getModel();?>
4
+    <?php $entity_model = $crud->getModel(); ?>
5 5
    
6 6
     <div class="row">
7 7
         @foreach ($field['model']::all() as $connected_entity_entry)
Please login to merge, or discard this patch.
src/app/Http/Controllers/ToneCrudController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,10 +4,7 @@
 block discarded – undo
4 4
  */
5 5
 namespace Backpack\Crud\Http\Controllers;
6 6
 
7
-use Illuminate\Foundation\Bus\DispatchesJobs;
8 7
 use Illuminate\Routing\Controller as BaseController;
9
-use Illuminate\Foundation\Validation\ValidatesRequests;
10
-use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
11 8
 use Backpack\Crud\Crud;
12 9
 
13 10
 /**
Please login to merge, or discard this patch.
src/Crud.php 4 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                         if(isset($data[$relation])){
123 123
                             $model->{$relation}()->sync($data[$relation]);
124 124
                         }else{
125
-                             $model->{$relation}()->sync([]);
125
+                                $model->{$relation}()->sync([]);
126 126
                         }
127 127
                     }
128 128
                 }else{
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
 
132 132
                 if( isset($relation['pivotFields']) ){
133 133
                     foreach($relation['pivotFields'] as $pivotField){
134
-                       foreach($data[$pivotField] as $pivot_id =>  $field){
135
-                         $model->{$relation['name']}()->updateExistingPivot($pivot_id, [$pivotField => $field]);
136
-                       }
134
+                        foreach($data[$pivotField] as $pivot_id =>  $field){
135
+                            $model->{$relation['name']}()->updateExistingPivot($pivot_id, [$pivotField => $field]);
136
+                        }
137 137
                     }
138 138
                 }
139 139
             }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     }
176 176
 
177 177
 
178
-   /*
178
+    /*
179 179
     |--------------------------------------------------------------------------
180 180
     |                                   READ
181 181
     |--------------------------------------------------------------------------
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
 
258 258
 
259 259
 
260
-   /*
260
+    /*
261 261
     |--------------------------------------------------------------------------
262 262
     |                                   UPDATE
263 263
     |--------------------------------------------------------------------------
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 
323 323
 
324 324
 
325
-   /*
325
+    /*
326 326
     |--------------------------------------------------------------------------
327 327
     |                                   DELETE
328 328
     |--------------------------------------------------------------------------
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 
414 414
 
415 415
 
416
-   /*
416
+    /*
417 417
     |--------------------------------------------------------------------------
418 418
     |                                   CRUD ACCESS
419 419
     |--------------------------------------------------------------------------
@@ -842,7 +842,7 @@  discard block
 block discarded – undo
842 842
 
843 843
             if (!in_array($field, $this->model->getHidden()))
844 844
             {
845
-                 $this->columns[] = [
845
+                    $this->columns[] = [
846 846
                                     'name' => $field,
847 847
                                     'label' => ucfirst($field),
848 848
                                     'type' => $this->getFieldTypeFromDbColumnType($field)
@@ -1210,10 +1210,10 @@  discard block
 block discarded – undo
1210 1210
 
1211 1211
     public function addCreateField($field)
1212 1212
     {
1213
-       return $this->add('create_fields', $field);
1213
+        return $this->add('create_fields', $field);
1214 1214
     }
1215 1215
 
1216
-     public function setUpdateFields($fields)
1216
+        public function setUpdateFields($fields)
1217 1217
     {
1218 1218
         $this->addMultiple('update_fields', $fields);
1219 1219
     }
Please login to merge, or discard this patch.
Doc Comments   +21 added lines, -4 removed lines patch added patch discarded remove patch
@@ -334,6 +334,7 @@  discard block
 block discarded – undo
334 334
      * Delete a row from the database.
335 335
      *
336 336
      * @param  [int] The id of the item to be deleted.
337
+     * @param integer $id
337 338
      * @return [bool] Deletion confirmation.
338 339
      *
339 340
      * TODO: should this delete items with relations to it too?
@@ -452,7 +453,8 @@  discard block
 block discarded – undo
452 453
      * Check if a permission is enabled for a Crud Panel. Fail if not.
453 454
      *
454 455
      * @param  [string] Permission.
455
-     * @return boolean
456
+     * @param string $permission
457
+     * @return boolean|null
456 458
      */
457 459
     public function hasAccessOrFail($permission)
458 460
     {
@@ -481,6 +483,7 @@  discard block
 block discarded – undo
481 483
      * All Create-Read-Update-Delete operations are done using that Eloquent Collection.
482 484
      *
483 485
      * @param [string] Full model namespace. Ex: App\Models\Article
486
+     * @param string $model_namespace
484 487
      */
485 488
     public function setModel($model_namespace)
486 489
     {
@@ -508,6 +511,7 @@  discard block
 block discarded – undo
508 511
      *
509 512
      * @param [string] Route name.
510 513
      * @param [array] Parameters.
514
+     * @param string $route
511 515
      */
512 516
     public function setRoute($route)
513 517
     {
@@ -540,7 +544,7 @@  discard block
 block discarded – undo
540 544
      * - $this->crud->setRouteName('admin.article')
541 545
      * - $this->crud->route = "admin/article"
542 546
      *
543
-     * @return [string]
547
+     * @return string
544 548
      */
545 549
     public function getRoute()
546 550
     {
@@ -553,6 +557,8 @@  discard block
 block discarded – undo
553 557
      *
554 558
      * @param [string] Entity name, in singular. Ex: article
555 559
      * @param [string] Entity name, in plural. Ex: articles
560
+     * @param string $singular
561
+     * @param string $plural
556 562
      */
557 563
     public function setEntityNameStrings($singular, $plural) {
558 564
         $this->entity_name = $singular;
@@ -731,8 +737,6 @@  discard block
 block discarded – undo
731 737
 
732 738
     /**
733 739
      * Add a field to the create/update form or both.
734
-     * @param [string] $name    Field name (the column name in the db in most cases)
735
-     * @param [array] $options Field-type-specific information.
736 740
      * @param string $form    The form to add the field to (create/update/both)
737 741
      */
738 742
     public function addField($field, $form='both')
@@ -1374,6 +1378,9 @@  discard block
 block discarded – undo
1374 1378
     //     return array_filter($this->{$entity}[] = $this->syncField($field));
1375 1379
     // }
1376 1380
 
1381
+    /**
1382
+     * @param string $entity
1383
+     */
1377 1384
     public function addMultiple($entity, $field)
1378 1385
     {
1379 1386
         $this->{$entity} = array_filter(array_map([$this, 'syncField'], $fields));
@@ -1398,11 +1405,17 @@  discard block
 block discarded – undo
1398 1405
     //     return array_values(array_filter($this->{$entity}, function($field) use ($fields) { return !in_array($field['name'], (array)$fields);}));
1399 1406
     // }
1400 1407
 
1408
+    /**
1409
+     * @param string $items
1410
+     */
1401 1411
     public function setSort($items, $order)
1402 1412
     {
1403 1413
         $this->sort[$items] = $order;
1404 1414
     }
1405 1415
 
1416
+    /**
1417
+     * @param string $items
1418
+     */
1406 1419
     public function sort($items)
1407 1420
     {
1408 1421
         if (array_key_exists($items, $this->sort))
@@ -1438,6 +1451,10 @@  discard block
 block discarded – undo
1438 1451
     }
1439 1452
 
1440 1453
     // face un fel de merge intre ce ii dai si ce e in CRUD
1454
+
1455
+    /**
1456
+     * @param string $entity
1457
+     */
1441 1458
     public function syncRelations($entity)
1442 1459
     {
1443 1460
         foreach ($this->relations as $field => $relation) {
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
 
102 102
         $relationFields = [];
103 103
 
104
-        foreach($fields as $field){
105
-            if(isset($field['model']) || isset($field['dependencies'])){
104
+        foreach ($fields as $field) {
105
+            if (isset($field['model']) || isset($field['dependencies'])) {
106 106
                 array_push($relationFields, $field);
107 107
             }
108 108
         }
@@ -118,22 +118,22 @@  discard block
 block discarded – undo
118 118
 
119 119
         foreach ($relations as $key => $relation)
120 120
         {
121
-            if ( (isset($relation['pivot']) && $relation['pivot'] ) || isset($relation['dependencies']) ){
122
-                if(is_array($relation['name'])){
123
-                    foreach($relation['name'] as $relation){
124
-                        if(isset($data[$relation])){
121
+            if ((isset($relation['pivot']) && $relation['pivot']) || isset($relation['dependencies'])) {
122
+                if (is_array($relation['name'])) {
123
+                    foreach ($relation['name'] as $relation) {
124
+                        if (isset($data[$relation])) {
125 125
                             $model->{$relation}()->sync($data[$relation]);
126
-                        }else{
126
+                        } else {
127 127
                              $model->{$relation}()->sync([]);
128 128
                         }
129 129
                     }
130
-                }else{
130
+                } else {
131 131
                     $model->{$relation['name']}()->sync($data[$relation['name']]);
132 132
                 }
133 133
 
134
-                if( isset($relation['pivotFields']) ){
135
-                    foreach($relation['pivotFields'] as $pivotField){
136
-                       foreach($data[$pivotField] as $pivot_id =>  $field){
134
+                if (isset($relation['pivotFields'])) {
135
+                    foreach ($relation['pivotFields'] as $pivotField) {
136
+                       foreach ($data[$pivotField] as $pivot_id =>  $field) {
137 137
                          $model->{$relation['name']}()->updateExistingPivot($pivot_id, [$pivotField => $field]);
138 138
                        }
139 139
                     }
@@ -298,14 +298,14 @@  discard block
 block discarded – undo
298 298
             // set the value
299 299
             if (!isset($fields[$k]['value']))
300 300
             {
301
-                if(is_array($field['name'])){
301
+                if (is_array($field['name'])) {
302 302
 
303 303
                     $fields[$k]['value'] = [];
304
-                    foreach($field['name'] as  $key => $relation){
304
+                    foreach ($field['name'] as  $key => $relation) {
305 305
                         $fields[$k]['value'][] = $entry->{$relation};
306 306
                     }
307 307
 
308
-                }else{
308
+                } else {
309 309
                     $fields[$k]['value'] = $entry->{$field['name']};
310 310
                 }
311 311
             }
@@ -424,13 +424,13 @@  discard block
 block discarded – undo
424 424
     public function allowAccess($access)
425 425
     {
426 426
         // $this->addButtons((array)$access);
427
-        return $this->access = array_merge(array_diff((array)$access, $this->access), $this->access);
427
+        return $this->access = array_merge(array_diff((array) $access, $this->access), $this->access);
428 428
     }
429 429
 
430 430
     public function denyAccess($access)
431 431
     {
432 432
         // $this->removeButtons((array)$access);
433
-        return $this->access = array_diff($this->access, (array)$access);
433
+        return $this->access = array_diff($this->access, (array) $access);
434 434
     }
435 435
 
436 436
     /**
@@ -643,7 +643,7 @@  discard block
 block discarded – undo
643 643
      */
644 644
     public function addDefaultTypeToColumn($column)
645 645
     {
646
-        if (array_key_exists('name', (array)$column))
646
+        if (array_key_exists('name', (array) $column))
647 647
         {
648 648
             $default_type = $this->getFieldTypeFromDbColumnType($column['name']);
649 649
             return array_merge(['type' => $default_type], $column);
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
      * @param [field or column]
660 660
      */
661 661
     public function addDefaultLabel($array) {
662
-        if (!array_key_exists('label', (array)$array) && array_key_exists('name', (array)$array)) {
662
+        if (!array_key_exists('label', (array) $array) && array_key_exists('name', (array) $array)) {
663 663
             $array = array_merge(['label' => ucfirst($this->makeLabel($array['name']))], $array);
664 664
             return $array;
665 665
         }
@@ -735,7 +735,7 @@  discard block
 block discarded – undo
735 735
      * @param [array] $options Field-type-specific information.
736 736
      * @param string $form    The form to add the field to (create/update/both)
737 737
      */
738
-    public function addField($field, $form='both')
738
+    public function addField($field, $form = 'both')
739 739
     {
740 740
         // if the field_defition_array array is a string, it means the programmer was lazy and has only passed the name
741 741
         // set some default values, so the field will still work
@@ -778,7 +778,7 @@  discard block
 block discarded – undo
778 778
      * @param  string $name Field name (as defined with the addField() procedure)
779 779
      * @param  string $form update/create/both
780 780
      */
781
-    public function removeField($name, $form='both')
781
+    public function removeField($name, $form = 'both')
782 782
     {
783 783
         switch (strtolower($form)) {
784 784
             case 'create':
@@ -801,7 +801,7 @@  discard block
 block discarded – undo
801 801
      * @param  array $array_of_names A simple array of the names of the fields to be removed.
802 802
      * @param  string $form          update/create/both
803 803
      */
804
-    public function removeFields($array_of_names, $form='both')
804
+    public function removeFields($array_of_names, $form = 'both')
805 805
     {
806 806
         if (!empty($array_of_names)) {
807 807
             foreach ($array_of_names as $name) {
@@ -922,7 +922,7 @@  discard block
 block discarded – undo
922 922
         array_map(function($field) {
923 923
             // $this->labels[$field] = $this->makeLabel($field);
924 924
 
925
-            $new_field =  [
925
+            $new_field = [
926 926
                                 'name' => $field,
927 927
                                 'label' => ucfirst($field),
928 928
                                 'value' => '', 'default' => $this->field_types[$field]['default'],
@@ -1263,7 +1263,7 @@  discard block
 block discarded – undo
1263 1263
 
1264 1264
     public function orderColumns($order)
1265 1265
     {
1266
-        $this->setSort('columns', (array)$order);
1266
+        $this->setSort('columns', (array) $order);
1267 1267
     }
1268 1268
 
1269 1269
 
@@ -1338,7 +1338,7 @@  discard block
 block discarded – undo
1338 1338
 
1339 1339
     public function orderFields($order)
1340 1340
     {
1341
-        $this->setSort('fields', (array)$order);
1341
+        $this->setSort('fields', (array) $order);
1342 1342
     }
1343 1343
 
1344 1344
 
@@ -1384,7 +1384,7 @@  discard block
 block discarded – undo
1384 1384
         if (!empty($this->{$type}))
1385 1385
         {
1386 1386
             $this->{$type} = array_map(function($field) use ($fields, $attributes) {
1387
-                if (in_array($field['name'], (array)$fields)) $field = array_merge($field, $attributes);
1387
+                if (in_array($field['name'], (array) $fields)) $field = array_merge($field, $attributes);
1388 1388
 
1389 1389
                 return $field;
1390 1390
             }, $this->{$type});
@@ -1414,7 +1414,7 @@  discard block
 block discarded – undo
1414 1414
                 if (is_numeric($key = array_search($item, array_column($this->{$items}, 'name')))) $elements[] = $this->{$items}[$key];
1415 1415
             }
1416 1416
 
1417
-            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use($items) {return !in_array($item['name'], $this->sort[$items]);}));
1417
+            return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use($items) {return !in_array($item['name'], $this->sort[$items]); }));
1418 1418
         }
1419 1419
 
1420 1420
         return $this->{$items};
@@ -1427,7 +1427,7 @@  discard block
 block discarded – undo
1427 1427
     // cred ca ia valorile din tabela de legatura ca sa ti le afiseze in select
1428 1428
     public function getRelationValues($model, $field, $where = [], $order = [])
1429 1429
     {
1430
-        $order = (array)$order;
1430
+        $order = (array) $order;
1431 1431
         $values = $model->select('*');
1432 1432
 
1433 1433
         if (!empty($where)) call_user_func_array([$values, $where[0]], array_slice($where, 1));
Please login to merge, or discard this patch.
Braces   +52 added lines, -27 removed lines patch added patch discarded remove patch
@@ -93,8 +93,7 @@  discard block
 block discarded – undo
93 93
         if ($form == 'create')
94 94
         {
95 95
             $fields = $this->create_fields;
96
-        }
97
-        else
96
+        } else
98 97
         {
99 98
             $fields = $this->update_fields;
100 99
         }
@@ -123,11 +122,11 @@  discard block
 block discarded – undo
123 122
                     foreach($relation['name'] as $relation){
124 123
                         if(isset($data[$relation])){
125 124
                             $model->{$relation}()->sync($data[$relation]);
126
-                        }else{
125
+                        } else{
127 126
                              $model->{$relation}()->sync([]);
128 127
                         }
129 128
                     }
130
-                }else{
129
+                } else{
131 130
                     $model->{$relation['name']}()->sync($data[$relation['name']]);
132 131
                 }
133 132
 
@@ -305,7 +304,7 @@  discard block
 block discarded – undo
305 304
                         $fields[$k]['value'][] = $entry->{$relation};
306 305
                     }
307 306
 
308
-                }else{
307
+                } else{
309 308
                     $fields[$k]['value'] = $entry->{$field['name']};
310 309
                 }
311 310
             }
@@ -484,7 +483,9 @@  discard block
 block discarded – undo
484 483
      */
485 484
     public function setModel($model_namespace)
486 485
     {
487
-        if (!class_exists($model_namespace)) throw new \Exception('This model does not exist.', 404);
486
+        if (!class_exists($model_namespace)) {
487
+            throw new \Exception('This model does not exist.', 404);
488
+        }
488 489
 
489 490
         $this->model = new $model_namespace();
490 491
         $this->query = $this->model->select('*');
@@ -526,7 +527,9 @@  discard block
 block discarded – undo
526 527
     {
527 528
         $complete_route = $route.'.index';
528 529
 
529
-        if (!\Route::has($complete_route)) throw new \Exception('There are no routes for this route name.', 404);
530
+        if (!\Route::has($complete_route)) {
531
+            throw new \Exception('There are no routes for this route name.', 404);
532
+        }
530 533
 
531 534
         $this->route = route($complete_route, $parameters);
532 535
         $this->initButtons();
@@ -582,8 +585,7 @@  discard block
 block discarded – undo
582 585
                 // if label and other details have been defined in the array
583 586
                 if (is_array($columns[0])) {
584 587
                     $this->addColumn($column);
585
-                }
586
-                else
588
+                } else
587 589
                 {
588 590
                     $this->addColumn([
589 591
                                     'name' => $column,
@@ -742,19 +744,20 @@  discard block
 block discarded – undo
742 744
         if (is_string($field))
743 745
         {
744 746
             $complete_field_array['name'] = $field;
745
-        }
746
-        else
747
+        } else
747 748
         {
748 749
             $complete_field_array = $field;
749 750
         }
750 751
 
751 752
         // if the label is missing, we should set it
752
-        if (!isset($complete_field_array['label']))
753
-            $complete_field_array['label'] = ucfirst($complete_field_array['name']);
753
+        if (!isset($complete_field_array['label'])) {
754
+                    $complete_field_array['label'] = ucfirst($complete_field_array['name']);
755
+        }
754 756
 
755 757
         // if the field type is missing, we should set it
756
-        if (!isset($complete_field_array['type']))
757
-            $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']);
758
+        if (!isset($complete_field_array['type'])) {
759
+                    $complete_field_array['type'] = $this->getFieldTypeFromDbColumnType($complete_field_array['name']);
760
+        }
758 761
 
759 762
         // store the field information into the correct variable on the CRUD object
760 763
         switch (strtolower($form)) {
@@ -970,11 +973,17 @@  discard block
 block discarded – undo
970 973
      */
971 974
     public function getFieldTypeFromDbColumnType($field)
972 975
     {
973
-        if (!array_key_exists($field, $this->field_types)) return 'text';
976
+        if (!array_key_exists($field, $this->field_types)) {
977
+            return 'text';
978
+        }
974 979
 
975
-        if ($field == 'password') return 'password';
980
+        if ($field == 'password') {
981
+            return 'password';
982
+        }
976 983
 
977
-        if ($field == 'email') return 'email';
984
+        if ($field == 'email') {
985
+            return 'email';
986
+        }
978 987
 
979 988
         switch ($this->field_types[$field]['type'])
980 989
         {
@@ -1047,7 +1056,9 @@  discard block
 block discarded – undo
1047 1056
         $columns = \Schema::getColumnListing($this->model->getTable());
1048 1057
         $fillable = $this->model->getFillable();
1049 1058
 
1050
-        if (!empty($fillable)) $columns = array_intersect($columns, $fillable);
1059
+        if (!empty($fillable)) {
1060
+            $columns = array_intersect($columns, $fillable);
1061
+        }
1051 1062
 
1052 1063
         // but not updated_at, deleted_at
1053 1064
         return array_values(array_diff($columns, [$this->model->getKeyName(), 'updated_at', 'deleted_at']));
@@ -1363,8 +1374,11 @@  discard block
 block discarded – undo
1363 1374
 
1364 1375
             foreach ($this->{$fields} as $key => $field)
1365 1376
             {
1366
-                if (array_key_exists($field['name'], $this->relations) && $this->relations[$field['name']]['pivot']) $this->{$fields}[$key]['value'] = $this->entry->{$this->relations[$field['name']]['name']}()->lists($this->relations[$field['name']]['model']->getKeyName())->toArray();
1367
-                    else $this->{$fields}[$key]['value'] = $this->entry->{$field['name']};
1377
+                if (array_key_exists($field['name'], $this->relations) && $this->relations[$field['name']]['pivot']) {
1378
+                    $this->{$fields}[$key]['value'] = $this->entry->{$this->relations[$field['name']]['name']}()->lists($this->relations[$field['name']]['model']->getKeyName())->toArray();
1379
+                } else {
1380
+                        $this->{$fields}[$key]['value'] = $this->entry->{$field['name']};
1381
+                    }
1368 1382
             }
1369 1383
         }
1370 1384
     }
@@ -1384,7 +1398,9 @@  discard block
 block discarded – undo
1384 1398
         if (!empty($this->{$type}))
1385 1399
         {
1386 1400
             $this->{$type} = array_map(function($field) use ($fields, $attributes) {
1387
-                if (in_array($field['name'], (array)$fields)) $field = array_merge($field, $attributes);
1401
+                if (in_array($field['name'], (array)$fields)) {
1402
+                    $field = array_merge($field, $attributes);
1403
+                }
1388 1404
 
1389 1405
                 return $field;
1390 1406
             }, $this->{$type});
@@ -1411,7 +1427,9 @@  discard block
 block discarded – undo
1411 1427
 
1412 1428
             foreach ($this->sort[$items] as $item)
1413 1429
             {
1414
-                if (is_numeric($key = array_search($item, array_column($this->{$items}, 'name')))) $elements[] = $this->{$items}[$key];
1430
+                if (is_numeric($key = array_search($item, array_column($this->{$items}, 'name')))) {
1431
+                    $elements[] = $this->{$items}[$key];
1432
+                }
1415 1433
             }
1416 1434
 
1417 1435
             return $this->{$items} = array_merge($elements, array_filter($this->{$items}, function($item) use($items) {return !in_array($item['name'], $this->sort[$items]);}));
@@ -1430,9 +1448,13 @@  discard block
 block discarded – undo
1430 1448
         $order = (array)$order;
1431 1449
         $values = $model->select('*');
1432 1450
 
1433
-        if (!empty($where)) call_user_func_array([$values, $where[0]], array_slice($where, 1));
1451
+        if (!empty($where)) {
1452
+            call_user_func_array([$values, $where[0]], array_slice($where, 1));
1453
+        }
1434 1454
 
1435
-        if (!empty($order)) call_user_func_array([$values, 'orderBy'], $order);
1455
+        if (!empty($order)) {
1456
+            call_user_func_array([$values, 'orderBy'], $order);
1457
+        }
1436 1458
 
1437 1459
         return $values->get()->lists($field, $model->getKeyName())->toArray();
1438 1460
     }
@@ -1441,8 +1463,11 @@  discard block
 block discarded – undo
1441 1463
     public function syncRelations($entity)
1442 1464
     {
1443 1465
         foreach ($this->relations as $field => $relation) {
1444
-            if ($relation['pivot']) $this->add($entity, ['name' => $field, 'type' => 'multiselect', 'value' => [], 'values' => $this->relations[$field]['values']]);
1445
-                else $this->sync($entity, $field, ['type' => 'select', 'values' => $this->relations[$field]['values']]);
1466
+            if ($relation['pivot']) {
1467
+                $this->add($entity, ['name' => $field, 'type' => 'multiselect', 'value' => [], 'values' => $this->relations[$field]['values']]);
1468
+            } else {
1469
+                    $this->sync($entity, $field, ['type' => 'select', 'values' => $this->relations[$field]['values']]);
1470
+                }
1446 1471
         }
1447 1472
     }
1448 1473
 
Please login to merge, or discard this patch.