detail_item($key)) !== NULL) return $x; // Get a default value for this key if (($value = SiteDetail::sample($key)) === NULL) abort(500,sprintf('No default value for [%s]',$key)); // At this point our DB doesnt have this value, we'll log an alert if ($this->exists) Log::alert(sprintf('Site [%d] is missing value for key [%s] - providing a default [%s]',$this->site_id,$key,serialize($value))); return $value; } /* RELATIONS */ public function country() { return $this->belongsTo(Country::class); } public function details() { return $this->hasMany(SiteDetail::class,NULL,'site_id'); } public function language() { return $this->belongsTo(Language::class); } public function taxes() { return $this->hasMany(Tax::class,'country_id','country_id'); } /* ATTRIBUTES */ /** * Return the site address as an array * * @return Collection */ public function getAddressAttribute(): Collection { return collect([ 'address1' => $this->site_address1, 'address2' => $this->site_address2, 'location' => sprintf('%s %s %s', $this->site_city.(($this->site_state || $this->site_postcode) ? ',' : ''), $this->site_state, $this->site_postcode) ]) ->filter(); } /** * Add the path to the mail logo, so it can be displayed. * * @return string */ public function getEmailLogoAttribute(): string { return (($x=$this->detail_item('email_logo')) !== NULL) ? '/storage/'.$x : '/image/generic/150/20/fff'; } /** * Add the path to the site logo, so it can be displayed. * * @param $value * @return string */ public function getSiteLogoAttribute($value): string { return (($x=$this->detail_item('site_logo')) !== NULL) ? '/storage/'.$x : '/image/generic/150/20/fff'; } /* METHODS */ /** * Get a key from the site_details * * @param $key * @return mixed */ private function detail_item($key) { return (($x=$this->details->search(function($item) use ($key) { return $item->key === $key; })) !== FALSE) ? $this->details->get($x)->value : NULL; } /** * Return the taxed value of a value * * @param float $value * @return float */ public function taxed(float $value): float { return Tax::calc($value,$this->taxes); } }