Greg Brock

Results 10 comments of Greg Brock

Thanks @nagibmahfuj, was having this issue and your solution seems to work.

Currently, adding classes is only supported when adding columns programmatically (i.e. using `addColumn()`. I'll consider it for a future release. Thanks for providing a code sample of how you'd expect...

Thank you for the kind words! Considering this further, I probably wouldn't use it that way; I like keeping controllers as simple as possible, while putting every bit of HTML...

I think it's definitely worth considering. Pagination works similarly to our Sorting, and [this](http://stackoverflow.com/questions/24086269/laravel-multiple-pagination-in-one-page) is one way to paginate multiple sets on the same page using that library. It could...

Currently, there is no way to accomplish this. I've been considering including in the rewrite of this package the excellent work from [jedrzej's Pimpable package](https://github.com/jedrzej/pimpable), which would include the ability...

There's currently no way to do this short of creating a custom view and hard-coding the ID, like so: ``` php $table = Table::create(); $table->setView('tables/custom_table'); // views/tables/custom_table.blade.php: // ...copy the...

I like the idea, but as you said I'll need to alter a couple of things so it won't potentially interfere with the existing classes methods. This will likely appear...

Try using `Gbrock\Table\Facades\Table` instead of `Gbrock\Table\Table`.

You're very welcome. Note that these fixes are only included in [the upcoming rewrite](https://github.com/gbrock/laravel-table/tree/rewrite-with-tests); I haven't patched them into the core since it seems you've already forked for your purposes....

Looks like it doesn't do this yet, it would be in [src/Intervention/Image/Gd/Encoder.php](https://github.com/Intervention/image/blob/04be355f8d6734c826045d02a1079ad658322dad/src/Intervention/Image/Gd/Encoder.php#L77): ```php imagewebp($this->image->getCore(), null, $this->quality); ``` ...but `$this->quality` is never set to `IMG_WEBP_LOSSLESS` anywhere. Something's weird though, when I...