format('d.m.Y.'); } public function setStartDateAttribute($value) { $this->attributes['start_date'] = Carbon::createFromFormat('d.m.Y.', $value); } public function getEndDateAttribute($value) { return Carbon::parse($value)->format('d.m.Y.'); } public function setEndDateAttribute($value) { $this->attributes['end_date'] = Carbon::createFromFormat('d.m.Y.', $value); } }