PHPackages                             ryukyuinteractive/laravel-chatwork-notifications - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. ryukyuinteractive/laravel-chatwork-notifications

AbandonedArchivedLibrary

ryukyuinteractive/laravel-chatwork-notifications
================================================

Chatwork notifications channel for Laravel. (v2)

1.1.0(6y ago)051MITPHPPHP &gt;=5.6.4

Since Jan 4Pushed 6y agoCompare

[ Source](https://github.com/RyukyuInteractive/laravel-chatwork-notification)[ Packagist](https://packagist.org/packages/ryukyuinteractive/laravel-chatwork-notifications)[ Docs](https://github.com/RyukyuInteractive/laravel-chatwork-notification)[ RSS](/packages/ryukyuinteractive-laravel-chatwork-notifications/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (7)Versions (4)Used By (0)

Chatwork Notifications Channel for Laravel 5.3
==============================================

[](#chatwork-notifications-channel-for-laravel-53)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2330f193c27cc3b41e51d6a3f881070b9a75b63bfabe693bd066629e2e052d1c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c75697364616c6d6f6c696e2f6c61726176656c2d7a656e7669612d6368616e6e656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/e2info/chatwork-notifications)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)

This package makes it easy to send Chatwork messages using [Chatwork API](http://developer.chatwork.com/ja/) with Laravel 5.3.

Contents
--------

[](#contents)

- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require ryukyuinteractive/laravel-chatwork-notifications
```

You must install the service provider:

```
// config/app.php
'providers' => [
    ...
    NotificationChannels\Chatwork\ChatworkServiceProvider::class,
],
```

Configuration
-------------

[](#configuration)

Configure your credentials:

```
// config/services.php
...
'chatwork' => [
    'api_token' => env('CHATWORK_API_TOKEN'),
],
...
```

Usage
-----

[](#usage)

You can now use the channel in your `via()` method inside the Notification class.

```
