$this->id, 'name' => $this->name, 'title' => $this->title, 'level' => $this->level, 'formatted_created_at' => $this->getFormattedAt(), 'abilities' => $this->getAbilities() ]; } public function getFormattedAt() { $dateFormat = CompanySetting::getSetting('carbon_date_format', $this->scope); return Carbon::parse($this->created_at)->format($dateFormat); } }