An open API service indexing awesome lists of open source software.

https://github.com/axeldotdev/laravel-airtable

Laravel Airtable allows you to import your Airtable data into your Laravel database.
https://github.com/axeldotdev/laravel-airtable

airtable laravel package php

Last synced: about 2 months ago
JSON representation

Laravel Airtable allows you to import your Airtable data into your Laravel database.

Awesome Lists containing this project

README

          

Laravel Airtable


Build Status
Total Downloads
Latest Stable Version
License

Laravel Airtable allows you to import your Airtable data into your Laravel database.

------

## Installation

You can install the package via composer:

```bash
composer require axeldotdev/laravel-airtable
```

You can publish the config file with:
```bash
php artisan vendor:publish --provider="AxelDotDev\LaravelAirtable\LaravelAirtableServiceProvider" --tag="config"
```

This is the contents of the published config file:

```php
return [
'uri' => 'https://api.airtable.com/v0/',

/*
|--------------------------------------------------------------------------
| Airtable Key
|--------------------------------------------------------------------------
|
| This value can be found in your Airtable account page:
| https://airtable.com/account
|
*/
'key' => env('AIRTABLE_KEY'),
];
```

## Documentation

In progress 🚧

## Testing

```bash
composer test
```

## Changelog

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

## Contributing

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

## Security Vulnerabilities

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

## Credits

- [Axel Charpentier](https://github.com/axeldotdev)
- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.