'boolean', 'airline_id' => 'integer', 'amount' => 'float', 'multiplier' => 'bool', 'charge_to_user' => 'bool', ]; /** * flight_type is stored a comma delimited list in table. Retrieve it as an array * * @return array */ public function getFlightTypeAttribute() { if (empty(trim($this->attributes['flight_type']))) { return []; } return explode(',', $this->attributes['flight_type']); } /** * Make sure the flight type is stored a comma-delimited list in the table * * @param string $value */ public function setFlightTypeAttribute($value) { if (is_array($value)) { $this->attributes['flight_type'] = implode(',', $value); } else { $this->attributes['flight_type'] = trim($value); } } /** * Foreign Keys */ public function airline() { return $this->belongsTo(Airline::class, 'airline_id'); } }