coffee = $coffee; } public function via($notifiable) { return ['mail']; } public function toMail($notifiable) { return (new MailMessage) ->line('The stock for coffee ' . $this->coffee->nama_kopi . ' is low.') ->action('View Coffee', url('/kopis/' . $this->coffee->id)) ->line('Current stock: ' . $this->coffee->stok); } }