Giter Site home page Giter Site logo

laravel-datatables's People

Contributors

daveawb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

laravel-datatables's Issues

Undefined Index for Eloquent Relationships

When I try to use dot notation to access an eloquent relationship, I always get an undefined index error.

Route::post('datatable', function()
{
    $datatable = App::make("Daveawb\Datatables\Datatable");

    $datatable->query(with(new Transaction())->with('transactionable'));

    $datatable->columns(array(
        "id",
        "created_at",
        'transactionable.id'
    ));

    return $datatable->result();
});

Updating to Laravel 5.0

I'm going to be updating this package to Laravel 5.0 over the coming month. I will be doing a ground up re-write as there are areas that can be improved by a different structure. If anyone that has used this package before has anything to add, please comment here or open up another discussion in the issue tracker.

My thinking at the moment involves an API such as:

$datatable->query(DB::table('users'));

$datatable->dbColumn($field, optional [ mixed $dataProp, array $options] )
    ->textColumn($text, optional [ mixed $dataProp, array $options ] )
    ->get(array $options);

Where columns can be added and removed by methods rather than the previous array input. This way an abstract factory can build the columns through a fluid builder interface opening up many more possibilities for enhancement and extension.

The updated package will also include support for datatables ~1.10 without breaking bc for < 1.10.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.