format('d.m.Y.'); } public function setDateAttribute($value) { $this->attributes['date'] = Carbon::createFromFormat('d.m.Y.', $value); } public function scopeOrdered($query) { return $query->orderBy('date', 'desc'); } public function getDayFormatedAttribute() { return Date::parse($this->attributes['date'])->format('d'); } public function getMonthFormatedAttribute() { return Date::parse($this->attributes['date'])->format('M'); } }