UniSharp / laravel-filemanager

Media gallery with CKEditor, TinyMCE and Summernote support. Built on Laravel file system.
https://unisharp.github.io/laravel-filemanager/
MIT License
2.08k stars 721 forks source link

file manager pages do not appear #920

Open abdulRahman-coder770 opened 4 years ago

abdulRahman-coder770 commented 4 years ago

I follow all installation instructions and clear commands my package version is the master Laravel 5.5 Capture00 please, what I can do to solve that?

mafftor commented 4 years ago

Didn't you forget to register the routes? Maybe you have disabled the setting in the config and didn't register your own instead?

    /*
    |--------------------------------------------------------------------------
    | Routing
    |--------------------------------------------------------------------------
     */

    'use_package_routes' => false,

Set it to true

    /*
    |--------------------------------------------------------------------------
    | Routing
    |--------------------------------------------------------------------------
     */

    'use_package_routes' => true,

Or Add this line to your routes/web.php

    Route::group(['prefix' => 'filemanager', 'middleware' => ['web', 'auth']], function () {
        \UniSharp\LaravelFilemanager\Lfm::routes();
    });