Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A fix for "Target class [web] does not exist." and an update to the Demo to work with custom url_prefix and middlewares #1026

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/LaravelFilemanagerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function boot()
], 'lfm_handler');

if (config('lfm.use_package_routes')) {
Route::group(['prefix' => 'filemanager', 'middleware' => ['web', 'auth']], function () {
Route::group(['prefix' => config('lfm.url_prefix') ?: 'filemanager', 'middleware' => config('lfm.middlewares') ?: ['web', 'auth']], function () {
\UniSharp\LaravelFilemanager\Lfm::routes();
});
}
Expand Down
6 changes: 6 additions & 0 deletions src/config/lfm.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@

'use_package_routes' => true,

//Middlewares to be applied to default routes when use_package_routes is true
'middlewares' => ['web','auth'],

//The url prefix to this package.
'url_prefix' => 'filemanager',

/*
|--------------------------------------------------------------------------
| Shared folder / Private folder
Expand Down
6 changes: 3 additions & 3 deletions src/views/demo.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<div class="row">
<div class="col-md-12">
<h2 class="mt-4">Embed file manager</h2>
<iframe src="/filemanager" style="width: 100%; height: 500px; overflow: hidden; border: none;"></iframe>
<iframe src="/{{config('lfm.url_prefix') ?: 'filemanager'}}" style="width: 100%; height: 500px; overflow: hidden; border: none;"></iframe>
</div>
</div>
</div>
Expand All @@ -61,7 +61,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"></script>
<script>
var route_prefix = "/filemanager";
var route_prefix = "/{{config('lfm.url_prefix') ?: 'filemanager'}}";
</script>

<!-- CKEditor init -->
Expand Down Expand Up @@ -186,7 +186,7 @@
tooltip: 'Insert image with filemanager',
click: function() {

lfm({type: 'image', prefix: '/filemanager'}, function(lfmItems, path) {
lfm({type: 'image', prefix: route_prefix}, function(lfmItems, path) {
lfmItems.forEach(function (lfmItem) {
context.invoke('insertImage', lfmItem.url);
});
Expand Down