donfanning
8/15/2018 - 1:24 PM

WonderSlack.php

<?php

namespace App\Notifications;

use Illuminate\Notifications\Notifiable;

class WonderSlack
{
    use Notifiable;

    /**
     * SlackチャンネルのWebhookURLを返す
     *
     * @return string
     */
    public function routeNotificationForSlack()
    {
        return config('slack.webhookurl.dm_created');
    }
}