PHP code example of comyo-media / shipcloud-laravel
1. Go to this page and download the library: Download comyo-media/shipcloud-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/ */
comyo-media / shipcloud-laravel example snippets
# Add `ShipcloudLaravelServiceProvider` to the `providers` array
'providers' => array(
...
ComyoMedia\ShipcloudLaravel\ShipcloudLaravelServiceProvider::class,
)
# Add the `ShipcloudFacade` to the `aliases` array
'aliases' => array(
...
'Shipcloud' => ComyoMedia\ShipcloudLaravel\ShipcloudFacade::class,
)
shell
$ php artisan vendor:publish