PHP code example of axeldotdev / laravel-airtable

1. Go to this page and download the library: Download axeldotdev/laravel-airtable library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

axeldotdev / laravel-airtable example snippets


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'),
];
bash
php artisan vendor:publish --provider="AxelDotDev\LaravelAirtable\LaravelAirtableServiceProvider" --tag="config"