https://github.com/laravision/crud
https://github.com/laravision/crud
crud framework laravel laravel-crud laravel5 package php
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/laravision/crud
- Owner: laravision
- Created: 2017-06-25T03:38:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-01T13:26:53.000Z (over 8 years ago)
- Last Synced: 2024-11-15T07:52:28.601Z (over 1 year ago)
- Topics: crud, framework, laravel, laravel-crud, laravel5, package, php
- Language: PHP
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Laravision Crud system (v1.2)
[](https://packagist.org/packages/laravision/crud)
[](https://packagist.org/packages/laravision/crud)
[](https://packagist.org/packages/laravision/crud)
Quickly build crud system , controller , models and views using Laravel 5.
This package expects that you are using Laravel 5.4 or above.
[](https://github.com/laravision/crud/)
## Install
In order to install Laravel 5.* Laravision Crud :
1) You will need to import the laravision/crud package via composer:
```shell
composer require laravision/crud
```
2) Add the service provider to your `config/app.php` file within the `providers` key:
```php
// ...
'providers' => [
/*
* Package Service Providers...
*/
Laravision\Crud\CrudServiceProvider::class,
],
// ...
```
## Usage
- Create new CRUD :
```shell
php artisan make:crud post
```
- Create new CRUD with model :
```shell
php artisan make:crud post --model=Post
```
- Create new CRUD with out default views path :
```shell
php artisan make:crud post --view=admin/post
```
- fixed special controller namespace :
```shell
php artisan make:crud Admin/Post
```
## Help
for more details about this package :
```shell
php artisan make:crud -h
```
[](https://github.com/laravision/crud/)
## License
Laravision Crud is free and open-sourced software distributed under the terms of the [MIT license](http://opensource.org/licenses/MIT).
## Note
Please report any issue you find in the issues page.
Pull requests are welcome.
**Code By [Marwen Hlaoui](https://marwenhlaoui.me)**