barryvdh / laravel-elfinder

elFinder bundle for Laravel
739 stars 171 forks source link

Laravel 5.5 Publish issue #217

Open ghost opened 6 years ago

ghost commented 6 years ago

Vendors publish failed.. There are no css or js file..

ganey commented 6 years ago

I'm getting this on 5.6 too

joseantoniopino commented 6 years ago

mee too with 5.6

DKWBL commented 6 years ago

can not see provider or config file after artisan publish (l5.6)

tamkeen-tms commented 5 years ago

I am getting the same issue! Publishing does not copy the views, assets, nor the config!

itomofumi commented 5 years ago

php artisan vendor:publish --provider='Barryvdh\Elfinder\ElfinderServiceProvider' --tag=config This command does not work with laravel 5.5 or higher Remove single quotes or try using double quotes.

php artisan vendor:publish --provider=Barryvdh\Elfinder\ElfinderServiceProvider --tag=config or php artisan vendor:publish --provider="Barryvdh\Elfinder\ElfinderServiceProvider" --tag=config

https://github.com/barryvdh/laravel-elfinder/pull/256