- Fix issue where free tickets were displaying '€0.00' instead of 'FREE'

This commit is contained in:
Dave 2016-03-21 17:43:58 +00:00
parent c94c91d18d
commit 6b13bca3b9
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ class Ticket extends MyBaseModel
*/
public function getIsFreeAttribute()
{
return ceil($this->price) === 0;
return ceil($this->price) == 0;
}
/**