Skip to content

jackfruh/scaffold-interface

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status License

ScaffoldInterface (CRUD Generator)

Scaffold

Scaffold Interface for laravel v5.1 it's simple and useful

####features :

  • Generate your model,views,controller and migrations just in few clicks.

  • Using an interface to design your table.

  • Rollbacking possibility.

  • Craft your laravel application faster and easier.

###I. Package installation

  1. Add scaffold-interface to your composer.json file to require Scaffold-Interface :
```json
require : {
"laravel/framework": "5.1.*",
"Amranidev/scaffold-interface": "dev-master"
}
```
  1. Update Composer :
```
composer update

```
  1. Add the service provider to config/app.php :
```php

Amranidev\ScaffoldInterface\ScaffoldInterfaceServiceProvider::class,
Amranidev\Ajaxis\AjaxisServiceProvider::class,

```
  1. Publish assets in your application with :
```
php artisan vendor:publish

```
  1. Migrate scaffoldinterface :
```
php artisan migrate

```

Congratulations, you have successfully installed Scaffold Interface!

###II. Usage

  1. Access to scaffold interface :
"localhost:8000/scaffold" to get into scaffoldinterface.
  1. Table creation :

    tablename must be tiny and plural for example : products . you can add many of attributes like (String,date,longtext,etc.)

  2. After creation :

    to complete your scaffolding . go to your terminal and type.

    $ php artisan migrate
    
    
  3. Finally :

    scaffolding it's done. you can use your CRUD for example : localhost:8000/product

###contact : amranidev@gmail.com

About

laravel v5.1 CRUD Generator i'ts simple and useful

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 91.5%
  • JavaScript 8.5%