Download the PHP package taskforcedev/crud-api without Composer
On this page you can find all versions of the php package taskforcedev/crud-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download taskforcedev/crud-api
More information about taskforcedev/crud-api
Files in taskforcedev/crud-api
Package crud-api
Short Description A laravel package providing an admin interface to create, edit and delete models.
License MIT
Informations about the package crud-api
CrudApi
Status: Testing Ready
We have tested the package in multiple scenarios and are comfortable using it in our own production contexts. Please let us know however if you do encounter an issue.
Integration Tests
Laravel 5.3 / CrudAPI 1.0.x | |
Laravel 5.4 / CrudAPI 1.1.x | |
Laravel 5.5 / CrudAPI 1.1.x |
This package provides administration interfaces for models out of the box, in order for this to work Laravel 5.3 conventions must be followed as per the assumptions below:
Assumptions
- The package uses the $fillable attribute on your model in order to populate crud forms
- Models:
- Models must have a public property $validation containing the array of validation rules.
- Authorization: Policies must be created to provide access to each model or extend a policy with a generic admin before filter.
User Model: This package assumes users will register on their own accord or be able to reset their own password, therefor any field called Password (or lowercase) will be hidden from the admin forms for security purposes.
Installation
To install add the package to your projects composer.json
Laravel 5.3
"require": {
"taskforcedev/crud-api": "1.0.*"
}
Laravel 5.4
"require": {
"taskforcedev/crud-api": "1.1.*"
}
Once installed add the service provider in your laravels config/app.php.
'providers' => [
...
// Add the laravel support class also if not already present.
Taskforcedev\LaravelSupport\ServiceProvider::class,
Taskforcedev\CrudApi\ServiceProvider::class,
]
Laravel 5.5
"require": {
"taskforcedev/crud-api": "1.1.*"
}
If you wish to use your own layout in the admin api then follow the instructions from https://github.com/taskforcedev/laravel-support to publish the taskforce-support config and set the layout name there.
In this case a yield is required for scripts to output the javascript required by the framework as well as jquery and bootstrap being included in your application
@yield('scripts')
Configuration
Overriding the configuration is not currently in use however support for other frameworks may be added in the future, incase you wish to override or add to the config use:
php artisan vendor:publish --tag="crudapi-config"
You will then see Copied File at /config/crudapi.php
Technologies Used
- Laravel 5.3+
- Bootstrap
Contributing
Please see file CONTRIBUTING.md for information on how you can help.
Security
If you find a security issue in this package please raise an issue with a prefix of [Security] on our Issue Board
License
All versions of crud-api with dependencies
laravel/framework Version >=5.4
taskforcedev/laravel-support Version 1.1.*