Laravel-Backpack / FileManager

Admin interface for files & folders, using elFinder.
Other
90 stars 21 forks source link

elfinder shows as Full page without the admin theme #13

Closed mansourcodes closed 3 years ago

mansourcodes commented 3 years ago

The file manager menu item leads to a full-page without the admin theme.

it's work fine as popup page in the NewsCRUD, but as stand alone it shows as this:

Screen Shot 2020-12-20 at 3 32 33 PM

I think it's because I copied the resources/views from Barryvdh\Elfinde php artisan vendor:publish --provider='Barryvdh\Elfinder\ElfinderServiceProvider' --tag=views

what is the current command to copy the views from FileManager

mansourcodes commented 3 years ago

Solved

using those commands after installing Backpack\FileManager

publish views

php artisan vendor:publish --provider='Backpack\FileManager\FileManagerServiceProvider' --tag=views

publish config

php artisan vendor:publish --provider='Backpack\FileManager\FileManagerServiceProvider' --tag=config

publish public css file

php artisan vendor:publish --provider='Backpack\FileManager\FileManagerServiceProvider' --tag=public

de-raaf-media commented 1 year ago

Thanks @mansourcodes