laravel4-datatables-package
laravel4-datatables-package copied to clipboard
Server-side handler of DataTables Jquery Plugin for Laravel 4
I ahve the following code snippet: ->leftJoin('blocked_users', function($join) use ($user_id, $id) { $join->on('users.id', '=', 'blocked_users.blocked_user_id') ->where('blocked_users.user_id', '=', $user_id); }) which throws the errors SQLSTATE[HY000]: General error: 2031 (SQL: select count(*)...
Hello, I actually use Location function to display my maps but i would like to map like : Mapper::location($stade->adresse_stade , $stade->zip_code)->map(); Because if i put only the adresse like for...
TableTools not working for file save buttons copy and print and save buttons are left on the top level. ``` "dom": 'Tlfrtip', "tableTools": { "aButtons": [ "copy", "print", { "sExtends":...
I am trying to install this package manually without using composer. so i copied Bllim folder from vendor directory to another laravel app vendor directory. But it says Bllim service...
->filterColumn('prod_id', 'whereIn', 'prod_id', '38,42,16') it show error: Argument 1 passed to Illuminate\Database\Grammar::parameterize() must be of the type array, string given, called in E:\web\sudehuishou\vendor\laravel\framework\src\Illuminate\Database\Query\Grammars\Grammar.php on line 311 and defined
``` ->filterColumn('prod_id', 'whereIn', 'prod_id', [38,42,16]) ``` Error:\vendor\bllim\datatables\src\Bllim\Datatables\Datatables.php717 trim() expects parameter 1 to be string, array given
`/var/www/itaporanews.com/laravel/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php` ``` * Get the regular expression for a generic Blade function. * * @param string $function * @return string */ public function createMatcher($function) { return '/(?
Hello, i need to add data attr to row, how can i do this? return Datatables::of($result) ->set_row_class('order-id-{{ $id }}') ->make(); i dont need row class with order-id! it will be...