Change Airport tz field to timezone

This commit is contained in:
Nabeel Shahzad
2018-02-06 10:59:31 -06:00
parent c6b1a475e9
commit 1cc999a4f9
5 changed files with 9 additions and 9 deletions

View File

@@ -90,8 +90,8 @@ class Airport extends BaseModel
/**
* @return string
*/
public function getTimezoneAttribute(): string
public function getTzAttribute(): string
{
return $this->tz;
return $this->timezone;
}
}