=', now())->get(); } public function event(): BelongsTo { return $this->belongsTo(Event::class); } public function entries(): HasMany { return $this->hasMany(Entry::class); } public function dislpay_fee(): String { return '$' . number_format($this->entry_fee / 100, 2); } // TODO add order column to be able to sort in score order }