40c911ff17
Title says it all ... Added web middleware to laravel-widgets config so the widget auto-reload / auto-refresh options can work with full functionality.
16 lines
325 B
PHP
16 lines
325 B
PHP
<?php
|
|
|
|
return [
|
|
'default_namespace' => 'App\Widgets',
|
|
|
|
'use_jquery_for_ajax_calls' => true,
|
|
|
|
/*
|
|
* Set Ajax widget middleware
|
|
*/
|
|
'route_middleware' => ['web'],
|
|
|
|
'widget_stub' => 'resources/stubs/widgets/widget.stub',
|
|
'widget_plain_stub' => 'resources/stubs/widgets/widget_plain.stub',
|
|
];
|