2017 © Pedro Peláez
 

library laravel-kendo-ui-datasource

image

chemprof/laravel-kendo-ui-datasource

  • Saturday, July 4, 2015
  • by Uraja128
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Laravel Kendo UI DataSource

ESSENTIALLY ALL WORK ON THIS PROJECT WAS ORIGINALLY DONE BY USER meowcakes. I HAVE FORKED THIS FROM websolutionmw MERELY TO GIVE MYSELF CONTROL OVER THE DEPENDENCY VERSIONS. I TAKE NO CREDIT OR RESPONSIBILITY FOR THE ORIGINAL SCRIPTS, OTHER THAN THE TRIVIAL ADJUSTMENTS I HAVE MADE., (*1)

Server side Kendo UI DataSource implementation for Laravel, (*2)

Installation

To get the latest version simply require it in your composer.json file., (*3)

"ChemProf/laravel-kendo-ui-datasource": "master"

You can register the facade in the aliases key of your app/config/app.php file., (*4)

'aliases' => array(

    'KendoDataSource' => 'ChemProf\LaravelKendoUiDatasource\Facade'

)

Example

$kd = KendoDataSource::make(
    Input::all(),
    [
        'address' => 'string',
        'suburb' => 'string',
        'phone' => 'string',
        'created_at' => 'date',
        'fully_registered' => 'boolean',
    ]
);

$query = User::newQuery();
$count = $kd->execute($query);
return Response::json(['data' => $query->get()->toArray(), 'total' => $count]);

The Versions

04/07 2015

dev-master

9999999-dev

  Sources   Download

The Development Requires

by ChemProf

04/07 2015

1.0.2a

1.0.2.0-alpha

  Sources   Download

The Development Requires

by ChemProf

04/07 2015

1.0.2

1.0.2.0

  Sources   Download

The Development Requires

by ChemProf

04/07 2015

1.0.0

1.0.0.0

  Sources   Download

The Development Requires

by ChemProf

04/07 2015

1.0.1

1.0.1.0

  Sources   Download

The Development Requires

by ChemProf