2017 © Pedro Peláez
 

library crude-crud

Crude CRUD for Laravel

image

jan-dolata/crude-crud

Crude CRUD for Laravel

  • Tuesday, March 28, 2017
  • by jan-dolata
  • Repository
  • 4 Watchers
  • 1 Stars
  • 1,706 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 100 Versions
  • 3 % Grown

The README.md

crude-crud

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score ![Total Downloads][ico-downloads], (*1)

Full documentation, (*2)

Table of content

Install

Via Composer, (*3)

``` bash $ composer require jan-dolata/crude-crud, (*4)


Add ServiceProvider to `config/app`.

JanDolata\CrudeCRUD\CrudeCRUDServiceProvider::class, (*5)


Publish and migrate ``` bash $ php artisan vendor:publish --provider="JanDolata\CrudeCRUD\CrudeCRUDServiceProvider" $ php artisan migrate

Check config file config/crude.php., (*6)

Usage

create dir app/Engine/Crude, (*7)

in app/Engine/Crude directory create class for list, (*8)

<?php

namespace App\Engine\Crude;

use Crude;
use CrudeListInterface;
use CrudeFromModelTrait;

class ListName extends Crude implements
    CrudeListInterface
{

    use CrudeFromModelTrait;

    public function __construct()
    {
        $this->setModel(new \App\Engine\Models\ModelName);

        $this->prepareCrudeSetup();
    }

}

in controller action, (*9)

return view('viewName', [
    'crudeSetup' => [(new \App\Engine\Crude\ListName)->getCrudeSetupData()]
]);

in view, (*10)

@include('CrudeCRUD::start')

it works., (*11)

=============, (*12)

Example

Part of create books table migration, (*13)

    public function up()
    {
        Schema::create('books', function (Blueprint $table) {
            $table->increments('id');
            $table->string('tile');
            $table->integer('order');
            $table->timestamps();
        });
    }

```php namespace App\Models;, (*14)

class Book extends \Illuminate\Database\Eloquent\Model { protected $fillable = ['title']; }, (*15)


```php use Auth; class BooksList extends \Crude implements \CRUDInterface, \CrudeOrderInterface { use \CrudeFromModelTrait; public function __construct() { $this->setModel(new \App\Models\Book); $this->prepareCrudeSetup(); $this->crudeSetup ->setTitle('List of books') ->setTrans(['id' => 'Id', 'title' => 'Title', 'order' => '#']) ->setColumnFormat('title', 'longtext'); $this->storeInFirstPlace(); if (! Auth:user()->cannotOrderListOfBooks()) $this->crudeSetup->useOrderedList('title'); } }

/wiki/ordered_list/1.png, (*16)

Change log

Please see CHANGELOG for more information what has changed recently., (*17)

Contributing

Please see CONTRIBUTING and CONDUCT for details., (*18)

Security

If you discover any security related issues, please email jan.dolata.gd@gmail.com instead of using the issue tracker., (*19)

Credits

License

The MIT License (MIT). Please see License File for more information., (*20)

The Versions

28/03 2017

dev-master

9999999-dev https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

28/03 2017

v1.1.27

1.1.27.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

28/03 2017

v1.1.26

1.1.26.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/03 2017

v1.1.25

1.1.25.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/03 2017

v1.1.24

1.1.24.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/03 2017

v1.1.23

1.1.23.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/03 2017

v1.1.22

1.1.22.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

22/03 2017

v1.1.21

1.1.21.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

17/03 2017

v1.1.20

1.1.20.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

17/03 2017

v1.1.19

1.1.19.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

17/03 2017

v1.1.18

1.1.18.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

16/03 2017

v1.1.17

1.1.17.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

16/03 2017

v1.1.16

1.1.16.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

16/03 2017

v1.1.15

1.1.15.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/03 2017

v1.1.14

1.1.14.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/03 2017

v1.1.13

1.1.13.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/03 2017

v1.1.12

1.1.12.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/03 2017

v1.1.11

1.1.11.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

14/03 2017

v1.1.10

1.1.10.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

10/03 2017

v1.1.9

1.1.9.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/03 2017

v1.1.8

1.1.8.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/03 2017

v1.1.7

1.1.7.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/03 2017

v1.1.6

1.1.6.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

08/03 2017

v1.1.5

1.1.5.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/03 2017

v1.1.4

1.1.4.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/03 2017

v1.1.3

1.1.3.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

27/02 2017

v1.1.2

1.1.2.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

08/02 2017

v1.1.1

1.1.1.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

06/02 2017

v1.1.0

1.1.0.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

04/02 2017

v1.0.125

1.0.125.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/02 2017

v1.0.124

1.0.124.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/02 2017

v1.0.123

1.0.123.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/02 2017

v1.0.122

1.0.122.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/02 2017

v1.0.121

1.0.121.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/02 2017

v1.0.120

1.0.120.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/02 2017

v1.0.119

1.0.119.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/02 2017

v1.0.118

1.0.118.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/02 2017

v1.0.117

1.0.117.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

31/01 2017

v1.0.116

1.0.116.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

31/01 2017

v1.0.115

1.0.115.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

30/01 2017

v1.0.114

1.0.114.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

27/01 2017

v1.0.113

1.0.113.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

27/01 2017

v1.0.112

1.0.112.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

26/01 2017

v1.0.111

1.0.111.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

25/01 2017

v1.0.110

1.0.110.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

03/01 2017

v1.0.109

1.0.109.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

30/11 2016

v1.0.108

1.0.108.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/11 2016

v1.0.107

1.0.107.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

22/11 2016

v1.0.106

1.0.106.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

17/11 2016

v1.0.105

1.0.105.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/11 2016

v1.0.104

1.0.104.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

27/10 2016

v1.0.103

1.0.103.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

27/10 2016

v1.0.102

1.0.102.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/10 2016

v1.0.101

1.0.101.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

17/10 2016

v1.0.100

1.0.100.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

14/10 2016

v1.0.99

1.0.99.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

14/10 2016

v1.0.98

1.0.98.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

13/10 2016

v1.0.97

1.0.97.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

06/10 2016

v1.0.96

1.0.96.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

06/10 2016

v1.0.95

1.0.95.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

04/10 2016

v1.0.94

1.0.94.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

28/09 2016

v1.0.93

1.0.93.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

22/09 2016

v1.0.92

1.0.92.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/09 2016

v1.0.91

1.0.91.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/09 2016

v1.0.90

1.0.90.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

09/09 2016

v1.0.89

1.0.89.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

06/09 2016

v1.0.88

1.0.88.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

31/08 2016

v1.0.87

1.0.87.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

25/08 2016

v1.0.86

1.0.86.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/08 2016

v1.0.85

1.0.85.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/08 2016

v1.0.84

1.0.84.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/08 2016

v1.0.83

1.0.83.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/08 2016

v1.0.82

1.0.82.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

11/08 2016

v1.0.81

1.0.81.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

11/08 2016

v1.0.80

1.0.80.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/07 2016

v1.0.79

1.0.79.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/07 2016

v1.0.78

1.0.78.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

15/07 2016

v1.0.77

1.0.77.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

14/07 2016

v1.0.76

1.0.76.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

13/07 2016

v1.0.75

1.0.75.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

07/07 2016

v1.0.74

1.0.74.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

07/07 2016

v1.0.73

1.0.73.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

05/07 2016

v1.0.72

1.0.72.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

05/07 2016

v1.0.71

1.0.71.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

04/07 2016

v1.0.70

1.0.70.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

02/07 2016

v1.0.69

1.0.69.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

02/07 2016

v1.0.68

1.0.68.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.67

1.0.67.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.66

1.0.66.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.65

1.0.65.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.64

1.0.64.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.63

1.0.63.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

01/07 2016

v1.0.62

1.0.62.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/06 2016

v1.0.61

1.0.61.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/06 2016

v1.0.60

1.0.60.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/06 2016

v1.0.59

1.0.59.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

24/06 2016

v1.0.58

1.0.58.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/06 2016

v1.0.57

1.0.57.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

23/06 2016

v1.0.56

1.0.56.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud

22/06 2016

v1.0.55

1.0.55.0 https://github.com/jan-dolata/crude-crud

Crude CRUD for Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jan Dolata

jan-dolata crude-crud