Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ferdhika31/laravel-line-bot
Laravel 5.4.* Line Bot
https://github.com/ferdhika31/laravel-line-bot
bot laravel library-free no-maintenance-intended
Last synced: 29 days ago
JSON representation
Laravel 5.4.* Line Bot
- Host: GitHub
- URL: https://github.com/ferdhika31/laravel-line-bot
- Owner: ferdhika31
- Created: 2017-08-12T08:02:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-04T09:40:53.000Z (over 6 years ago)
- Last Synced: 2024-12-02T01:51:38.631Z (about 1 month ago)
- Topics: bot, laravel, library-free, no-maintenance-intended
- Language: PHP
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
About the LINE Messaging API
See the official API documentation for more information.
English: https://developers.line.me/en/docs/
Japanese: https://developers.line.me/ja/docs/
# Laravel Line Bot
Laravel 5.4.* Line BotPackage Laravel yang berfungsi untuk menghubungkan line sdk.
## Instalasi
### Install dan Daftarkan Package
`composer require ferdhika31/laravel-line-bot`Tambahkan Service Provider dan Facade pada `config.app`
```
'providers' => [Ferdhika31\LaravelLineBot\LineBotServiceProvider::class,
]
``````
'aliases' => ['LineBot' => Ferdhika31\LaravelLineBot\Facades\LineBot::class,
]
```### Publish config
```
php artisan vendor:publish --provider="Ferdhika31\LaravelLineBot\LineBotServiceProvider"
```
## Penggunaan
-