PHPackages                             yaddabristol/crud - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. yaddabristol/crud

ActiveLibrary

yaddabristol/crud
=================

Base Crud Controller to extend from

0.0.2(9y ago)0264[7 issues](https://github.com/yaddabristol/crud/issues)[1 PRs](https://github.com/yaddabristol/crud/pulls)PHPPHP &gt;=5.3.0

Since Jun 29Pushed 9y ago3 watchersCompare

[ Source](https://github.com/yaddabristol/crud)[ Packagist](https://packagist.org/packages/yaddabristol/crud)[ RSS](/packages/yaddabristol-crud/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (3)Versions (4)Used By (0)

CRUD
====

[](#crud)

Extendable CRUD controller for quick development.

Requirements
------------

[](#requirements)

- Laravel 5.1+
- Composer

Installation
------------

[](#installation)

- `composer require yadda/crud`
- Add the following to to the `providers` section in `config/app.php`

    ```
      Yaddabristol\Crud\CrudServiceProvider::class,
      Collective\Html\HtmlServiceProvider::class,

    ```
- Add the aliases to `config/app.php`

    ```
      'Form' => Collective\Html\FormFacade::class,
      'Html' => Collective\Html\HtmlFacade::class,

    ```
- Publish package config

    ```
      php artisan vendor:publish

    ```
- Update `config/crud.php` as needed
- Make a controller that extends `YaddaBristol\Crud\Controllers\CrudController`

    ```
