illuminate3

Results 18 comments of illuminate3

@Chumper Having the best of both worlds would be awesome! I switched form collections to queries and went from 10+secs to under a 1 second for 15,000 records and growing....

@bart This worked in 4.2 ``` {!! Datatable::table() ->addColumn('id',trans('kotoba::table.email'), Lang::choice('kotoba::table.role', 2), Lang::choice('kotoba::table.action', 2)) ->setUrl(route('api.users')) ->setOptions(array( 'dom' =>"Tlfrtip", 'tabletools' => array( "aSwfPath" => "/assets/Datatables/extensions/TableTools/swf/copy_csv_cls_pdf.swf" ) )) ->render('_partials.datatable') !!} ``` This is...

Not much but if it helps. ``` [2015-02-09 03:23:13] local.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Method Illuminate\View\View::__toString() must not throw an exception' in /Users/school/Sites/l5/storage/framework/views/940d6d1efb79de99c69a68f0aa469c19:0 Stack trace: #0 /Users/school/Sites/l5/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(116): Illuminate\Foundation\Bootstrap\HandleExceptions->fatalExceptionFromError(Array) #1 [internal...

If I call api/users I get ... ``` {"aaData":[[1,"[email protected]","admin"]],"sEcho":0,"iTotalRecords":1,"iTotalDisplayRecords":1} ``` L4.2 works.

Thanks for helping! ``` Users View {#259 ▼ #factory: Factory {#135 ▼ #engines: EngineResolver {#132 ▼ #resolvers: array:2 [▼ "php" => Closure {#137 ▼ reflection: """ Closure [ public method...

The yajra package sort of works. The issues I'm coming up with the final initialization part -- essentially no sorting. Plus I'm skeptic that is as fast as chumper can...

Hint path of death :sob: @ proto What's on line 74 of that cache file?

Same issue here. ``` jQuery(document).ready(function(){ ``` error is "Uncaught ReferenceError: jQuery is not defined" At the beginning of the javascript.blade.php file I added ``` ``` Please not that I'm calling...

Thanks! I was calling jquery like this: ``` window.jQuery || document.write('') ``` I got that from the HTML 5 boiler plate template. I changed that to just a regular call...

Thanks, I'll take a look at those ideas.