-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from xuandung38/master
Fix issues when creating New modules title_case and str_plural
- Loading branch information
Showing
13 changed files
with
71 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,5 @@ and you can get the title "Module Management" from package's translation file by | |
You can contribute to this project, by just taking fork of it. We are open for suggestion and PRs. If you have any new suggestions or anything for that matter, contact me at [email protected] | ||
|
||
|
||
|
||
# Note | ||
This is hotfix for `https://github.com/viralsolani/laravel-adminpanel/issues/528` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,17 +3,14 @@ | |
"description": "To create a whole module with all related files like model, controller, repository, routes, views etc with a simple GUI.", | ||
"type": "package", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Vipul Basapati", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"authors": [{ | ||
"name": "Vipul Basapati", | ||
"email": "[email protected]" | ||
}], | ||
"autoload": { | ||
"psr-4": { | ||
"psr-4": { | ||
"Bvipul\\Generator\\": "src/" | ||
} | ||
}, | ||
"require": { | ||
} | ||
} | ||
"require": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
// Default : backend | ||
'views_folder' => 'backend', | ||
|
||
]; | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,4 +57,4 @@ function get_array_contents($arr) | |
|
||
return $contents; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
<?php | ||
|
||
return [ | ||
"modules" => [ | ||
"create" => "Create Module", | ||
"management" => "Module Management", | ||
"title" => "Module", | ||
"edit" => "Edit Module", | ||
"table" => [ | ||
"name" => "Module Name", | ||
"url" => "Module View Route", | ||
"view_permission_id" => "View Permission", | ||
"created_by" => "Created By", | ||
], | ||
"form" => [ | ||
"name" => "Module Name", | ||
"url" => "View Route", | ||
"view_permission_id" => "View Permission", | ||
"directory_name" => "Directory Name", | ||
"namespace" => "Namespace", | ||
"model_name" => "Model Name", | ||
"controller_name" => "Controller Name", | ||
"resource_controller" => "Resourceful Controller", | ||
"table_controller_name" => "Controller Name", | ||
"table_name" => "Table Name", | ||
"route_name" => "Route Name", | ||
"route_controller_name" => "Controller Name", | ||
"resource_route" => "Resourceful Routes", | ||
"views_directory" => "Directory Name", | ||
"index_file" => "Index", | ||
"create_file" => "Create", | ||
"edit_file" => "Edit", | ||
"form_file" => "Form", | ||
"repo_name" => "Repository Name", | ||
"event" => "Event Name", | ||
], | ||
] | ||
]; | ||
"modules" => [ | ||
"create" => "Create Module", | ||
"management" => "Module Management", | ||
"title" => "Module", | ||
"edit" => "Edit Module", | ||
"table" => [ | ||
"name" => "Module Name", | ||
"url" => "Module View Route", | ||
"view_permission_id" => "View Permission", | ||
"created_by" => "Created By", | ||
], | ||
"form" => [ | ||
"name" => "Module Name", | ||
"url" => "View Route", | ||
"view_permission_id" => "View Permission", | ||
"directory_name" => "Directory Name", | ||
"namespace" => "Namespace", | ||
"model_name" => "Model Name", | ||
"controller_name" => "Controller Name", | ||
"resource_controller" => "Resourceful Controller", | ||
"table_controller_name" => "Controller Name", | ||
"table_name" => "Table Name", | ||
"route_name" => "Route Name", | ||
"route_controller_name" => "Controller Name", | ||
"resource_route" => "Resourceful Routes", | ||
"views_directory" => "Directory Name", | ||
"index_file" => "Index", | ||
"create_file" => "Create", | ||
"edit_file" => "Edit", | ||
"form_file" => "Form", | ||
"repo_name" => "Repository Name", | ||
"event" => "Event Name", | ||
], | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?php | ||
|
||
return [ | ||
"modules" => [ | ||
"all" => "All Modules Page", | ||
"create" => "Create Module Page", | ||
"management" => "Module Management", | ||
"main" => "Module Pages", | ||
] | ||
]; | ||
"modules" => [ | ||
"all" => "All Modules Page", | ||
"create" => "Create Module Page", | ||
"management" => "Module Management", | ||
"main" => "Module Pages", | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters