https://github.com/idevelopthings/crud-models
Crud Model Resources - Convert your laravel models into simple crud endpoints with much customisation
https://github.com/idevelopthings/crud-models
Last synced: 3 months ago
JSON representation
Crud Model Resources - Convert your laravel models into simple crud endpoints with much customisation
- Host: GitHub
- URL: https://github.com/idevelopthings/crud-models
- Owner: iDevelopThings
- License: mit
- Created: 2018-08-19T19:34:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-19T19:43:17.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T15:07:58.400Z (5 months ago)
- Language: PHP
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CrudModels
[](https://travis-ci.org/scootersam/crud-models)
[](https://styleci.io/repos/CHANGEME)
[](https://scrutinizer-ci.com/g/scootersam/crud-models/?branch=master)
[](https://insight.sensiolabs.com/projects/CHANGEME)
[](https://coveralls.io/github/scootersam/crud-models?branch=master)[](https://packagist.org/packages/scootersam/crud-models)
[](https://packagist.org/packages/scootersam/crud-models)
[](https://packagist.org/packages/scootersam/crud-models)Package description: CHANGE ME
## Installation
Install via composer
```bash
composer require scootersam/crud-models
```### Register Service Provider
**Note! This and next step are optional if you use laravel>=5.5 with package
auto discovery feature.**Add service provider to `config/app.php` in `providers` section
```php
ScooterSam\CrudModels\ServiceProvider::class,
```### Register Facade
Register package facade in `config/app.php` in `aliases` section
```php
ScooterSam\CrudModels\Facades\CrudModels::class,
```### Publish Configuration File
```bash
php artisan vendor:publish --provider="ScooterSam\CrudModels\ServiceProvider" --tag="config"
```## Usage
CHANGE ME
## Security
If you discover any security related issues, please email [email protected]
instead of using the issue tracker.## Credits
- [Sam Parton](https://github.com/scootersam/crud-models)
- [All contributors](https://github.com/scootersam/crud-models/graphs/contributors)This package is bootstrapped with the help of
[melihovv/laravel-package-generator](https://github.com/melihovv/laravel-package-generator).