Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ We do not give estimated times for completion on `Accepted` Proposals.

---

### v3.0.10 - 2019-04-23

`REVISED`

- Create relative edit URIs for data grid results.

### v3.0.9 - 2019-01-14

`FIXED`
Expand Down
2 changes: 1 addition & 1 deletion src/Extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/AbstractGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/DataGridGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/ExtensionGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/ExtensionThemeGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/FormGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/MigrationsGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/RepositoryGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/admin-controller.stub
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class {{plural_name}}Controller extends AdminController
'direction' => 'desc',
],
'transformer' => function($element) {
$element->edit_uri = route('admin.{{lower_vendor}}.{{lower_name}}.{{plural_lower_model}}.edit', $element->id);
$element->edit_uri = route('admin.{{lower_vendor}}.{{lower_name}}.{{plural_lower_model}}.edit', $element->id, false);

return $element;
},
Expand Down
2 changes: 1 addition & 1 deletion tests/DataGridGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/ExtensionGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/ExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/ExtensionThemeGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/FormGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/GeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/MigrationsGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/RepositoryGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the license.txt file.
*
* @package Workshop
* @version 3.0.9
* @version 3.0.10
* @author Cartalyst LLC
* @license Cartalyst PSL
* @copyright (c) 2011-2019, Cartalyst LLC
Expand Down