Skip to content

Latest commit

 

History

History
88 lines (48 loc) · 1.87 KB

README.md

File metadata and controls

88 lines (48 loc) · 1.87 KB

Latest Unstable Version License

ScaffoldInterface

####this is a test version####

Scaffold

Scaffold Interface for laravel v5.1 using materailize

####features :

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

  • Rollbacking possibility.

  • Using an interface to design your table

I. ###Package installation#

  1. Add scaffold-interface to your composer.json file to require Ajaxis :
```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 . you can add many of attributes like (String,date,longtext,etc.) for example : products

  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 : [email protected]