format('d.m.Y.'); } public function setDateAttribute($value) { $this->attributes['date'] = Carbon::createFromFormat('d.m.Y.', $value); } public function scopeUpcoming($query) { return $query->where('date', '>=', Carbon::now()->toDateString()); } }