PHP code example of nazalas / fedex-laravel

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

    

nazalas / fedex-laravel example snippets




...
'providers' => [

        /*
         * Laravel Framework Service Providers...
         */
        //Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
        Illuminate\Auth\AuthServiceProvider::class,
        Illuminate\Broadcasting\BroadcastServiceProvider::class,
        Illuminate\Bus\BusServiceProvider::class,

...
       Arkitecht\FedEx\Laravel\Providers\FedExServiceProvider::class,
    ],



...
    'aliases' => [

        'FedEx'     => Arkitecht\FedEx\Laravel\Facades\FedEx::class

    ],