Skip to content

Laravel package to invite users to slack organization.

License

Notifications You must be signed in to change notification settings

TappNetwork/slack-inviter

Repository files navigation

Laravel Slack Inviter

Latest Version on Packagist Quality Score Total Downloads

Installation

You can install the package via composer:

composer require tapp/slack-inviter

Appearance

Slack Inviter Form

Usage

Add the Slack env vars on your .env file:

SLACK_COMMUNITY_NAME=
SLACK_TEAM_URL=
SLACK_LEGACY_TOKEN=

Add the inviter form on your blade file:

<div>
    @include('slack-inviter::invite-form', [ 
        'email' => auth()->user()->email 
    ])
</div>

You're all set!

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.