2017 © Pedro Peláez
 

library rapyd

crud widgets for laravel, to make an admin in few lines of code

image

wbe/rapyd

crud widgets for laravel, to make an admin in few lines of code

  • Tuesday, March 13, 2018
  • by it-wbe
  • Repository
  • 2 Watchers
  • 1 Stars
  • 200 Installations
  • JavaScript
  • 1 Dependents
  • 0 Suggesters
  • 287 Forks
  • 0 Open issues
  • 100 Versions
  • 10 % Grown

The README.md

rapyd-laravel

Join the chat at https://gitter.im/zofe/rapyd-laravel, (*1)

, (*2)

This is a pool of presentation and editing widgets (Grids and Forms) for laravel.
Nothing to "generate", just some classes to let you develop and maintain CRUD backends in few lines of code., (*3)

Main Website: rapyd.com
Demo: rapyd.com/demo
Documentation: Wiki, (*4)

rapyd laravel, (*5)

Install in Laravel 5.2, 5.1, 5.0, 4.*

dev-master should work laravel 5.2 but is tested on 5.1 (LTS), (*6)

  1. To composer.json add:
    "zofe/rapyd": "2.2.*" for Laravel 5.2
    "zofe/rapyd": "2.1.*" for Laravel 5.1
    "zofe/rapyd": "2.0.*" for Laravel 5.0
    "zofe/rapyd": "1.3.*" for Laravel 4.*, (*7)

  2. run $ composer update zofe/rapyd, (*8)

  3. add this in the "provider" array on your config/app.php:
    Zofe\Rapyd\RapydServiceProvider::class,
    or for < 5.1
    'Zofe\Rapyd\RapydServiceProvider',, (*9)

  4. then publish assets:
    $ php artisan vendor:publish
    or for < 5.0
    $ php artisan asset:publish zofe/rapyd
    $ php artisan config:publish zofe/rapyd, (*10)

  5. (optional) enable demo, uncomment the route:, (*11)

#  /app/Http/rapyd.php
// Route::controller('rapyd-demo','\Zofe\Rapyd\Demo\DemoController');

DataGrid

DataGrid extend DataSet to make data-grid output with few lines of fluent code.
It build a bootstrap striped table, with pagination at bottom and order-by links on table header. It support also blade syntax, filters, closures etc.., (*12)

in a controller, (*13)

   $grid = \DataGrid::source(Article::with('author'));  //same source types of DataSet

   $grid->add('title','Title', true); //field name, label, sortable
   $grid->add('author.fullname','author'); //relation.fieldname 
   $grid->add('{{ substr($body,0,20) }}...','Body'); //blade syntax with main field
   $grid->add('{{ $author->firstname }}','Author'); //blade syntax with related field
   $grid->add('body|strip_tags|substr[0,20]','Body'); //filter (similar to twig syntax)
   $grid->add('body','Body')->filter('strip_tags|substr[0,20]'); //another way to filter
   $grid->edit('/articles/edit', 'Edit','modify|delete'); //shortcut to link DataEdit actions

   //cell closure
   $grid->add('revision','Revision')->cell( function( $value, $row) {
        return ($value != '') ? "rev.{$value}" : "no revisions for art. {$row->id}";
   });

   //row closure
   $grid->row(function ($row) {
       if ($row->cell('public')->value < 1) {
           $row->cell('title')->style("color:Gray");
           $row->style("background-color:#CCFF66");
       }  
   });

   $grid->link('/articles/edit',"Add New", "TR");  //add button
   $grid->orderBy('article_id','desc'); //default orderby
   $grid->paginate(10); //pagination

   view('articles', compact('grid'))

in a view you can just write, (*14)


#articles.blade.php {!! $grid !!}

styling a datagrid, (*15)

   ...
   $grid->add('title','Title', true)->style("width:100px"); //adding style to th
   $grid->add('body','Body')->attr("class","custom_column"); //adding class to a th
   ...
    //row and cell manipulation via closure
    $grid->row(function ($row) {
       if ($row->cell('public')->value < 1) {
           $row->cell('title')->style("color:Gray");
           $row->style("background-color:#CCFF66");
       }  
    });
    ...

datagrid supports also csv output, so it can be used as "report" tool., (*16)

   ...
   $grid->add('title','Title');
   $grid->add('body','Body')
   ...
   $grid->buildCSV();  //  force download 
   $grid->buildCSV('export_articles', 'Y-m-d.His');  // force download with custom stamp
   $grid->buildCSV('uploads/filename', 'Y-m-d');  // write on file 
    ...
    $grid->buildCSV('uploads/filename', 'Y-m-d', false); // without sanitize cells

    $as_excel = ['delimiter'=>',', 'enclosure'=>'"', 'line_ending'=>"\n"];  
    $grid->buildCSV('uploads/filename', 'Y-m-d', true, $as_excel); // with customizations

DataForm

DataForm is a form builder, you can add fields, rules and buttons.
It will build a bootstrap form, on submit it will check rules and if validation pass it'll store new entity., (*17)

   //start with empty form to create new Article
   $form = \DataForm::source(new Article);

   //or find a record to update some value
   $form = \DataForm::source(Article::find(1));

   //add fields to the form
   $form->add('title','Title', 'text'); //field name, label, type
   $form->add('body','Body', 'textarea')->rule('required'); //validation

   //some enhanced field (images, wysiwyg, autocomplete, maps, etc..):
   $form->add('photo','Photo', 'image')->move('uploads/images/')->preview(80,80);
   $form->add('body','Body', 'redactor'); //wysiwyg editor
   $form->add('author.name','Author','autocomplete')->search(['firstname','lastname']);
   $form->add('categories.name','Categories','tags'); //tags field
   $form->add('map','Position','map')->latlon('latitude','longitude'); //google map


   //you can also use now the smart syntax for all fields: 
   $form->text('title','Title'); //field name, label
   $form->textarea('body','Body')->rule('required'); //validation

   //change form orientation
   $form->attributes(['class'=>'form-inline']);

   ...


   $form->submit('Save');
   $form->saved(function() use ($form)
   {
        $form->message("ok record saved");
        $form->link("/another/url","Next Step");
   });

   view('article', compact('form'))
   #article.blade.php

  {!! $form !!}

DataForm explained, (*18)

customize form in view

You can directly customize form using build() in your controller, (*19)

php ... $form->build(); view('article', compact('form')) then in the view you can use something like this:, (*20)

   #article.blade.php
    {!! $form->header !!}

        {!! $form->message !!} <br />

        @if(!$form->message)
            <div class="row">
                <div class="col-sm-4">
                     {!! $form->render('title') !!}
                </div>
                <div class="col-sm-8">
                    {!! $form->render('body') !!}
                </div>
            </div> 
            ...
        @endif

    {!! $form->footer !!}

custom form layout explained
custom form layout demo, (*21)

DataEdit

DataEdit extends DataForm, it's a full CRUD application for given Entity.
It has status (create, modify, show) and actions (insert, update, delete) It detect status by simple query string semantic:, (*22)

  /dataedit/uri                     empty form    to CREATE new records
  /dataedit/uri?show={record_id}    filled output to READ record (without form)
  /dataedit/uri?modify={record_id}  filled form   to UPDATE a record
  /dataedit/uri?delete={record_id}  perform   record DELETE
  ...
   //simple crud for Article entity
   $edit = \DataEdit::source(new Article);
   $edit->link("article/list","Articles", "TR")->back();
   $edit->add('title','Title', 'text')->rule('required');
   $edit->add('body','Body','textarea')->rule('required');
   $edit->add('author.name','Author','autocomplete')->search(['firstname','lastname']);

   //you can also use now the smart syntax for all fields: 
   $edit->textarea('title','Title'); 
   $edit->autocomplete('author.name','Author')->search(['firstname','lastname']);

   return $edit->view('crud', compact('edit'));

   #crud.blade.php

  {!! $edit !!} 

DataEdit explained, (*23)

DataFilter

DataFilter extends DataForm, each field you add and each value you fill in that form is used to build a __where clause__ (by default using 'like' operator).
It should be used in conjunction with a DataSet or DataGrid to filter results.
It also support query scopes (see eloquent documentation), closures, and a cool DeepHasScope trait see samples:, (*24)

   $filter = \DataFilter::source(new Article);

   //simple like 
   $filter->add('title','Title', 'text');

   //simple where with exact match
   $filter->add('id', 'ID', 'text')->clause('where')->operator('=');

   //custom query scope, you can define the query logic in your model
   $filter->add('search','Search text', 'text')->scope('myscope');

   //cool deep "whereHas" (you must use DeepHasScope trait bundled on your model)
   //this can build a where on a very deep relation.field
   $filter->add('search','Search text', 'text')->scope('hasRel','relation.relation.field');

   //closure query scope, you can define on the fly the where
   $filter->add('search','Search text', 'text')->scope( function ($query, $value) {
         return $query->whereIn('field', ["1","3",$value]);
   })

   $filter->submit('search');
   $filter->reset('reset');

   $grid = \DataGrid::source($filter);
   $grid->add('nome','Title', true);
   $grid->add('{{ substr($body,0,20) }}...','Body');
   $grid->paginate(10);

   view('articles', compact('filter', 'grid'))
   # articles.blade

   {!! $filter !!}  
   {!! $grid !!}

DataFilter explained
Custom layout and custom query scope, (*25)

DataTree

The DataTree extends the DataGrid, and displays sortable tree widget. It supports all the methods of the DataGrid with the exception of pagination and sorting. Another difference is you need to pass in an already loaded Baum Model, not an empty Model or Query Builder., (*26)

To use this widget you need to php composer.phar require baum/baum and make sure your model extends Baum\Node., (*27)

    // the root node won't appear, only its sub-nodes will be displayed.
    $root = Menu::find(1) or App::abort(404);

    $tree = \DataTree::source($root);
    $tree->add('title');
    $tree->edit("/menu/edit", 'Edit', 'modify|delete');
    $tree->submit('Save the order');
    return view('menu-list', compact('tree'));

Namespace consideration, Extending etc.

To use widgets you can: - just use the global aliases: \DataGrid::source()... (please note the '\') - or import facades:, (*28)

    use Zofe\Rapyd\Facades\DataSet;
    use Zofe\Rapyd\Facades\DataGrid;
    use Zofe\Rapyd\Facades\DataForm;
    use Zofe\Rapyd\Facades\DataForm;
    use Zofe\Rapyd\Facades\DataEdit;
    ..
    DataGrid::source()... 
  • or you can extend each class
    Class MyDataGrid extends Zofe\Rapyd\DataGrid\DataGrid {
    ...
    }
    Class MyDataEdit extends Zofe\Rapyd\DataEdit\DataEdit {
    ...
    }
    ..
    MyDataGrid::source()

Publish & override configuration and assets

You can quickly publish the configuration file (to override something) by running the following Artisan command., (*29)

$ php artisan vendor:publish  

You need also to add this to your views, to let rapyd add runtime assets:, (*30)

<head>
...
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">



{!! Rapyd::head() !!} 

</head>

note: widget output is in standard with Boostrap 3+, and some widget need support of JQuery 1.9+ so be sure to include dependencies as above, (*31)

A better choice is to split css and javascipts and move javascript at bottom, just before body to speedup the page, you can do this with:, (*32)

<head>
  ...
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
{!! Rapyd::styles() !!}
</head>
....

    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
   {!! Rapyd::scripts() !!}
</body>

In short

Rapyd use a "widget" approach to make a crud, without "generation". (this approach is worst in terms of flexibility but fast/rapid in terms of development and maintenance):, (*33)

You need to "show" and "edit" record from an entity?
Ok so you need a DataGrid and DataEdit. You can build widgets where you want (even multiple widgets on same route). An easy way to work with rapyd is: * make a route to a controller for each entity you need to manage * make the controller with one method for each widget (i.e.: one for a datagrid and one for a dataedit) * make an empty view, include bootstrap and display content that rapyd will build for you, (*34)

Rapyd comes with demo (controller, models, views) a route is defined in app/Http/rapyd.php
so go to:, (*35)

/rapyd-demo, (*36)

License

Rapyd is licensed under the MIT license, (*37)

If Rapyd saves you time, please support Rapyd, (*38)

The Versions

13/03 2018

dev-master

9999999-dev https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

by Avatar it-wbe

laravel form crud backend admin administrator datatable rapyd

13/03 2018

2.3.6

2.3.6.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

30/01 2018

2.3.5

2.3.5.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/11 2017

2.3.4

2.3.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

27/11 2017

2.3.3

2.3.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

19/10 2017

2.3.1

2.3.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

19/10 2017

2.3.2

2.3.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/09 2017

2.3.0

2.3.0.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

22/09 2017

2.2.9.1

2.2.9.1 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

22/09 2017

2.2.9

2.2.9.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

25/08 2017

2.2.8

2.2.8.0 https://github.com/it-wbe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

by Avatar it-wbe

laravel form crud backend admin administrator datatable rapyd

24/01 2017

2.1.18

2.1.18.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/01 2017

2.2.7

2.2.7.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/01 2017

dev-mshahamirian-master

dev-mshahamirian-master https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

15/11 2016

2.1.17

2.1.17.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

15/11 2016

2.2.6

2.2.6.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/09 2016

2.1.16

2.1.16.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/09 2016

2.2.5

2.2.5.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/06 2016

2.1.15

2.1.15.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/06 2016

2.2.4

2.2.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

31/05 2016

2.2.3

2.2.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

26/03 2016

2.1.14

2.1.14.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

26/03 2016

2.2.2

2.2.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/03 2016

dev-fix-csv-on-macs

dev-fix-csv-on-macs https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

04/03 2016

2.2.x-dev

2.2.9999999.9999999-dev https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

18/01 2016

2.1.13

2.1.13.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

15/01 2016

2.1.12

2.1.12.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/12 2015

2.2.1

2.2.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/12 2015

2.2.0

2.2.0.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

04/12 2015

2.1.11

2.1.11.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

16/10 2015

2.1.10

2.1.10.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

10/10 2015

2.1.9

2.1.9.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

10/10 2015

2.1.8

2.1.8.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

07/10 2015

2.1.7

2.1.7.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

07/10 2015

2.1.6

2.1.6.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

06/10 2015

2.1.5

2.1.5.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

02/10 2015

2.1.4

2.1.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

21/09 2015

2.1.3

2.1.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

21/09 2015

2.1.2

2.1.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

16/09 2015

2.1.1

2.1.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

16/09 2015

2.1.0

2.1.0.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

07/08 2015

2.0.11

2.0.11.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

10/06 2015

1.3.x-dev

1.3.9999999.9999999-dev https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

10/06 2015

dev-fixes53

dev-fixes53 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

10/06 2015

1.3.36

1.3.36.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

23/05 2015

2.0.10

2.0.10.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

21/05 2015

2.0.9

2.0.9.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

15/05 2015

2.0.8

2.0.8.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/04 2015

1.3.33

1.3.33.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/04 2015

1.3.34

1.3.34.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

28/04 2015

1.3.35

1.3.35.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

27/04 2015

1.3.32

1.3.32.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

27/04 2015

1.3.31

1.3.31.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

25/04 2015

1.3.30

1.3.30.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

19/04 2015

1.3.29

1.3.29.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

18/04 2015

2.0.7

2.0.7.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

18/04 2015

2.0.6

2.0.6.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

26/03 2015

1.3.28

1.3.28.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

23/03 2015

1.4.x-dev

1.4.9999999.9999999-dev https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

23/03 2015

1.3.27

1.3.27.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

23/03 2015

dev-ref

dev-ref https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/03 2015

1.3.26

1.3.26.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/03 2015

1.3.25

1.3.25.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/03 2015

1.1.x-dev

1.1.9999999.9999999-dev https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/03 2015

1.1.4

1.1.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

08/03 2015

2.0.5

2.0.5.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

21/02 2015

2.0.4

2.0.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/02 2015

2.0.3

2.0.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

20/02 2015

2.0.2

2.0.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

19/02 2015

2.0.1

2.0.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

14/02 2015

2.0.0

2.0.0.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

24/01 2015

1.3.24

1.3.24.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

01/11 2014

1.3.23

1.3.23.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

14/10 2014

1.3.22

1.3.22.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

22/09 2014

1.3.21

1.3.21.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

11/09 2014

1.3.20

1.3.20.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

05/08 2014

1.3.19

1.3.19.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

31/07 2014

1.3.18

1.3.18.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

29/07 2014

1.3.17

1.3.17.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, to make an admin in few lines of code

  Sources   Download

The Requires

 

laravel form crud backend admin administrator datatable rapyd

25/07 2014

1.3.16

1.3.16.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

24/07 2014

1.3.15

1.3.15.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

18/07 2014

1.3.14

1.3.14.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

12/07 2014

1.3.13

1.3.13.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

10/07 2014

1.3.12

1.3.12.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

08/07 2014

1.3.11

1.3.11.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

07/07 2014

1.3.10

1.3.10.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

06/07 2014

1.3.9

1.3.9.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

05/07 2014

1.3.8

1.3.8.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

02/07 2014

1.3.7

1.3.7.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

02/07 2014

1.3.6

1.3.6.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

01/07 2014

1.3.5

1.3.5.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

30/06 2014

1.3.4

1.3.4.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

30/06 2014

1.3.3

1.3.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

27/06 2014

1.3.2

1.3.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

17/06 2014

1.3.1

1.3.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

16/06 2014

1.3.0

1.3.0.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

16/06 2014

1.2.2

1.2.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

15/06 2014

1.1.3

1.1.3.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

14/06 2014

1.1.2

1.1.2.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd

08/06 2014

1.1.1

1.1.1.0 https://github.com/zofe/rapyd-laravel

crud widgets for laravel 4, port of rapyd

  Sources   Download

The Requires

 

laravel crud rapyd