PHP code example of deniztezcan / laravel-parcel2send
1. Go to this page and download the library: Download deniztezcan/laravel-parcel2send 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/ */
deniztezcan / laravel-parcel2send example snippets
'providers' => [
//other things here
DenizTezcan\Parcel2Send\Parcel2SendServiceProvider::class,
];
'aliases' => [
//other things here
'Parcel2Send' => DenizTezcan\Parcel2Send\Facades\Parcel2Send::class,
];
php artisan vendor:publish --provider="DenizTezcan\Parcel2Send\Parcel2SendServiceProvider"