Closed sstoyanov7 closed 7 years ago
Fix bug displaying humanized label, instead of specified label via ->label("Label text")
->label("Label text")
For example the date filter field in the code below:
Created at
'created_at'
Create date
->label("Create date")
$filter = Tart::filter($this->request->query()) ->entries([ 'created_at' => Tart::entry('date', null, function ($collection, $value) { return $collection->where('...'); })->label('Created date'), ]);
@sstoyanov7 Could you also remove the failing hhvm from the build matrix while you're at it? Thanks!
hhvm
@hkdobrev sure, removed hhvm as requested.
Fix bug displaying humanized label, instead of specified label via
->label("Label text")
For example the date filter field in the code below:
Created at
from humanized'created_at'
, which is incorrect.Create date
provided via->label("Create date")
, which is correct.