PHPackages                             zephia/laravel-pilot - 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. zephia/laravel-pilot

ActiveLibrary[API Development](/categories/api)

zephia/laravel-pilot
====================

This package is a wrapper of Pilot CRM API Client PHP Class for Laravel Framework.

v1.0.4(9y ago)0568MITPHP

Since Aug 16Pushed 9y ago2 watchersCompare

[ Source](https://github.com/zephia/laravel-pilot)[ Packagist](https://packagist.org/packages/zephia/laravel-pilot)[ RSS](/packages/zephia-laravel-pilot/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (3)Versions (6)Used By (0)

laravel-pilot
=============

[](#laravel-pilot)

This package is a wrapper of [Pilot CRM API Client PHP Class](https://github.com/zephia/pilot-api-client) for Laravel Framework.

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

[](#installation)

Run the following command and provide the latest stable version:

```
composer require zephia/laravel-pilot
```

Then register this service provider with Laravel in config/app.php:

```
'providers' => [
    ...
    Zephia\LaravelPilot\LaravelPilotServiceProvider::class,
    ...
]
```

Publish config file:

```
php artisan vendor:publish --provider="Zephia\LaravelPilot\LaravelPilotServiceProvider" --tag="config"
```

Add **PILOT\_APP\_KEY** and **PILOT\_API\_DEBUG** constants to your .env file:

```
PILOT_APP_KEY=YOUR-PILOT-APP-KEY
PILOT_API_DEBUG=false

```

Usage
-----

[](#usage)

### Create and store lead

[](#create-and-store-lead)

See fields documentation at [official Pilot API reference](http://www.pilotsolution.com.ar/home/api.php)

```
