Kevin

Results 5 comments of Kevin

I figure out how to solve this. In order to raise the memory limit of each worker you need to setup extra environment key as `GAE_MEMORY_MB` in your case, add...

I made a PR to solve this issue [https://github.com/antonioribeiro/tracker/pull/514](https://github.com/antonioribeiro/tracker/pull/514)

for laravel 6, execute this `composer require laravel/helpers`

here is what I did ``` namespace App\Traits\Model; use BadMethodCallException; use Illuminate\Support\Str; use Kyslik\ColumnSortable\Exceptions\ColumnSortableException; use Kyslik\ColumnSortable\SortableLink; trait Sortable { use \Kyslik\ColumnSortable\Sortable; /** * @param \Illuminate\Database\Query\Builder $query * @param array $sortParameters...