belongsTo('\App\Models\Event'); } /** * Get the recipient label of the model. * * @return string */ public function getRecipientsLabelAttribute() { if ($this->recipients == 0) { return 'All Attendees'; } $ticket = Ticket::scope()->find($this->recipients); return 'Ticket: ' . $ticket->title; } /** * The attributes that should be mutated to dates. * * @var array $dates */ public function getDates() { return ['created_at', 'updated_at', 'sent_at']; } }