PHPackages                             hivelink/laravel - 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. [API Development](/categories/api)
4. /
5. hivelink/laravel

ActiveLaravel-package[API Development](/categories/api)

hivelink/laravel
================

HiveLink Operator Library for Laravel!

v1.0.5(1y ago)0182↓50%PHP

Since Dec 5Pushed 1y ago1 watchersCompare

[ Source](https://github.com/hivelinklib/hivelink-laravel)[ Packagist](https://packagist.org/packages/hivelink/laravel)[ RSS](/packages/hivelink-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

 [ ![Logo](logo.png) ](https://github.com/hivelinklib/hivelink-laravel)

### Hivelink Laravel SDK

[](#hivelink-laravel-sdk)

 SDK for implementing Hivelink SMS,Inquiry API in your Laravel projects.
 [**Explore the docs »**](#table-of-contents)

Hivelink Laravel
================

[](#hivelink-laravel)

**First of all you will ned an [API Key](http://notif.hivelink.co "API Key") . You can get one [Here](http://notif.hivelink.co/app/auth/login).**

##### Supported Laravel Versions:

[](#supported-laravel-versions)

- V.4
- V.5
- V.6
- V.7
- V.8
- V.9
- **V.10**

Installation
============

[](#installation)

Step 1 - Install the package
----------------------------

[](#step-1---install-the-package)

- **Method 1**: You can install hivelink/laravel with Composer directly in your project:

```
composer require hivelink/laravel
```

Step 2
------

[](#step-2)

Head to **config/app.php** and add this line to the end of **providers** Array:

```
Hivelink\Laravel\ServiceProvider::class,
```

So that array must me something like this:

```
'providers' => [
		/*
		* Laravel Framework Service Providers...
		*/
		.
		.
		.
		Hivelink\Laravel\ServiceProvider::class
]
```

Then in the **config/app.php** and add this line to the end of **aliases** Array:

```
'Hivelink' => Hivelink\Laravel\Facade::class,
```

Step 3 - Publish
----------------

[](#step-3---publish)

Run this command in your project dirctory:

```
php artisan vendor:publish --provider="Hivelink\Laravel\ServiceProvider" --tag="config"

```

In the message appear, find the number of Hivelink, enter the related number then hit Enter.

Step 4 - Api-Key
----------------

[](#step-4---api-key)

Now you must define your [API Key](https://notif.hivelink.co/app/auth/login "API Key") to project. for this head to **config/hivelink.php** then put your API KEY in the code:

```
