@tithira I think the error says for itself. You are missing the config/cdn.php. If you are using Laravel 5.4 or below do this in the config/app.php
'providers' => array(
//...
Publiux\laravelcdn\CdnServiceProvider::class,
),
and then add an alias
'aliases' => array(
//...
'CDN' => Publiux\laravelcdn\Facades\CdnFacadeAccessor::class
),
Now you have to run artisan publish
php artisan vendor:publish --provider 'Publiux\laravelcdn\CdnServiceProvider'