You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-27Lines changed: 12 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# An awesome code generator for laravel framework - with client-side validation
2
2
3
-
For full documentation and screenshots please visit <ahref="https://crestapps.com/laravel-code-generator/docs/1.0"target="_blank"title="Laravel Code Generator Documentation">CrestApps.com</a>
3
+
For full documentation and screenshots please visit <ahref="https://crestapps.com/laravel-code-generator/docs/1.1"target="_blank"title="Laravel Code Generator Documentation">CrestApps.com</a>
4
4
5
5
6
6
## Introduction
@@ -9,7 +9,7 @@ A clean code generator for Laravel framework that will save you time! This aweso
9
9
10
10
## Features
11
11
12
-
* Create full resource using a single command with/without <strong>migration</strong> or from <strong>existing database</strong>.
12
+
* Create full resources using a single command with/without <strong>migration</strong> or from <strong>existing database</strong>.
13
13
* Create standard CRUD controllers with simple or form-request validation.
14
14
* Create model with relations.
15
15
* Create named routes.
@@ -20,57 +20,42 @@ A clean code generator for Laravel framework that will save you time! This aweso
20
20
* Auto multiple-response storing in the database.
21
21
* Create form-request.
22
22
* Customizable view’s templates to enable you to change the standard look and feel of your application.
23
-
* Create view's layouts.
24
-
* Change the template at run time.
23
+
* Create view's layouts with and without client-side validation.
24
+
* Change the template at run time to generate different views.
25
25
* Create code to upload file.
26
+
* Ability to generate views with and without Laravel-Collective.
26
27
* Lots of documentation.
27
28
28
29
29
-
30
30
## Installation
31
31
32
-
> If you don't have LaravelCollective Forms & HTML package installed, it will be installed for you. However you'll still have to update your config/app.php to bootstrap the package to the framework.
33
-
34
-
35
32
36
33
To download this package into your laravel project, use the command-line to execute the following command
Add the following line to bootstrap "LaravelCollective Forms & HTML package" to the framework.
50
-
```
51
-
Collective\Html\HtmlServiceProvider::class,
52
-
```
53
-
54
-
Second, look for the `aliases` array. Then, add the following two lines to create an aliase for "LaravelCollective Forms & HTML package".
55
-
```
56
-
'Form' => Collective\Html\FormFacade::class,
57
-
'Html' => Collective\Html\HtmlFacade::class,
58
-
```
59
-
60
-
61
46
Finally, execute the following command from the command-line to publish the package's config and the default template to start generating awesome code.
> A layout is required for the default views! The code generator allows you to create a layout using the command-line. Of cource you can use your own layout. You'll only need to include [CSS bootstrap framework](http://getbootstrap.com/"CSS bootstrap framework") in your layout for the default templates to work properly. Additionally, you can chose to you design your own templetes using a different framework.
51
+
> A layout is required for the default views! The code generator allows you to create a layout using the command-line. Of cource you can use your own layout. You'll only need to include [CSS bootstrap framework](http://getbootstrap.com/"CSS bootstrap framework") in your layout for the default templates to work properly. Additionally, you can chose to you design your own templetes using a different or no css framework.
67
52
68
53
69
54
## Available Commands
70
55
71
-
> The command in wetween the square brackets [] must be replaced with a variable of your choice.
56
+
> The command in between the square brackets [] must be replaced with a variable of your choice.
Copy file name to clipboardExpand all lines: composer.json
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
{
2
2
"name": "crestapps/laravel-code-generator",
3
3
"license": "MIT",
4
-
"description": "A clean code generator for Laravel framework that will save you time! This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms! It is extremely flexible and customizable to cover many on the use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application",
5
-
"version": "v1.0.5",
4
+
"description": "A clean code generator for Laravel framework that will save you time!
5
+
This awesome tool will help you generate resources like views, controllers, routes, migrations, languages or request-forms!
6
+
It is extremely flexible and customizable to cover many use cases. It is shipped with cross-browsers compatible template, along with a client-side validation to modernize your application.",
0 commit comments