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.
- Host: GitHub
- URL: https://github.com/axeldotdev/laravel-airtable
- Owner: axeldotdev
- License: mit
- Created: 2021-03-02T10:51:44.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-04-11T14:42:36.000Z (about 4 years ago)
- Last Synced: 2026-02-15T22:25:17.926Z (4 months ago)
- Topics: airtable, laravel, package, php
- Language: PHP
- Homepage:
- Size: 272 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
Laravel Airtable
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.