Skip to content

Commit

Permalink
Change package description
Browse files Browse the repository at this point in the history
  • Loading branch information
sohelamin committed Oct 9, 2017
1 parent 052592b commit 20f303e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Laravel 5 CRUD Generator
# Laravel CRUD Generator

[![Build Status](https://travis-ci.org/appzcoder/crud-generator.svg)](https://travis-ci.org/appzcoder/crud-generator.svg)
[![Total Downloads](https://poser.pugx.org/appzcoder/crud-generator/d/total.svg)](https://packagist.org/packages/appzcoder/crud-generator)
[![Latest Stable Version](https://poser.pugx.org/appzcoder/crud-generator/v/stable.svg)](https://packagist.org/packages/appzcoder/crud-generator)
[![License](https://poser.pugx.org/appzcoder/crud-generator/license.svg)](https://packagist.org/packages/appzcoder/crud-generator)

This Generator package provides various generators like CRUD, API, Controller, Model, Migration, View for your painless development of your applications.

## Requirements
Laravel >=5.1
PHP >= 5.5.9
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "appzcoder/crud-generator",
"license": "MIT",
"description": "Laravel 5 CRUD Generator",
"description": "Laravel CRUD Generator",
"keywords": [
"laravel",
"crud",
"crud generator",
"laravel crud generator"
"laravel crud generator",
"api generator"
],
"authors": [
{
Expand Down
8 changes: 4 additions & 4 deletions doc/usage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Usage

### CRUD Command:
### CRUD Command

```
php artisan crud:generate Posts --fields='title#string; content#text; category#select#options={"technology": "Technology", "tips": "Tips", "health": "Health"}' --view-path=admin --controller-namespace=Admin --route-group=admin --form-helper=html
Expand Down Expand Up @@ -61,7 +61,7 @@ php artisan crud:generate Posts --fields='title#string; content#text; category#s
php artisan crud:generate Posts --fields_from_file="/path/to/fields.json" --view-path=admin --controller-namespace=Admin --route-group=admin --form-helper=html
```

### Other Commands:
### Other Commands

For controller:

Expand Down Expand Up @@ -102,13 +102,13 @@ Route::resource('posts', 'PostsController');

### API Commands

For Api Crud
For api crud:

```
php artisan crud:api Posts --fields='title#string; content#text' --controller-namespace=Api
```

For api controller
For api controller:

```
php artisan crud:api-controller Api\\PostsController --crud-name=posts --model-name=Post
Expand Down

0 comments on commit 20f303e

Please sign in to comment.