forked from miguel456/rbrecruiter
16 lines
191 B
PHP
16 lines
191 B
PHP
<?php
|
|
|
|
|
|
namespace App\Traits;
|
|
|
|
|
|
trait DiscordRoutable
|
|
{
|
|
|
|
public function routeNotificationForDiscord()
|
|
{
|
|
return config('channels.notifications.discord.webhook_url');
|
|
}
|
|
|
|
}
|