領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
241B

  1. <?php
  2. return [
  3. 'enable' => (bool)env('SLACK_NOTIFICATION', false),
  4. 'webhook_url' => env('SLACK_WEBHOOK_URL'),
  5. 'channel' => env('SLACK_CHANNEL'),
  6. 'sender_name' => env('SLACK_SENDER_NAME'),
  7. 'icon' => env('SLACK_ICON'),
  8. ];