PHP code example of sqits / laravel-gripp

1. Go to this page and download the library: Download sqits/laravel-gripp 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/ */

    

sqits / laravel-gripp example snippets

 bash
php artisan vendor:publish --provider="Sqits\Gripp\GrippServiceProvider" --tag="config"
 php
return [

    /*
     * Define the default Gripp api uri.
     */

    'domain' => env('GRIPP_DOMAIN', 'https://api.gripp.com/'),
    
    /*
     * Define the Gripp api key.
     */

    'api_key' => env('GRIPP_API_KEY', null),
];