PHP code example of kevinem / guidestar-quickstart-laravel

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

    

kevinem / guidestar-quickstart-laravel example snippets


'providers' => [
    // Other service providers...

    KevinEm\GuideStar\Laravel\Providers\QuickStartDetailServiceProvider::class,
    KevinEm\GuideStar\Laravel\Providers\QuickStartSearchServiceProvider::class
],


'aliases' => [
    // Other facades...

    'QuickStartSearch' => KevinEm\GuideStar\Laravel\Facades\QuickStartSearch::class,
    'QuickStartDetail' => KevinEm\GuideStar\Laravel\Facades\QuickStartDetail::class,
],

$ php artisan vendor:publish

QuickStartSearch::searchEIN('54-1774039');

QuickStartDetail::getOrganizationDetail(7831216);