binshops / laravel-blog

Laravel Blog Package/ Laravel CMS. Easiest way to add a blogging system to your Laravel website. Laravel Blog.

Home Page:https://www.binshops.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Undefined variable $noLocaleRoute

thenasty1337 opened this issue · comments

Undefined variable $noLocaleRoute

resources\views\vendor\binshopsblog\index.blade
.php : 64

<ul class="binshops-cat-hierarchy">

                    @if($categories)

                        @include("binshopsblog::partials._category_partial", [

    'category_tree' => $categories,

    'name_chain' => $nameChain = "",

    'noLocaleRoute' => $noLocaleRoute

    ])

                    @else

                        <span>No Categories</span>

                    @endif

                </ul>

what is your configuration?
single lang? multi lang?

I am also having the same problem. My setup is multi lang

Minha solução provisória foi agregar 'noLocaleRoute' => null aos dados de cada view retornada em BinshopsReaderController. Ex:

return view("binshopsblog::index", [ 'lang_list' => BinshopsLanguage::all('locale', 'name'), 'locale' => $request->get("locale"), 'lang_id' => $request->get('lang_id'), 'category_chain' => $categoryChain, 'categories' => $rootList, 'posts' => $posts, 'title' => $title, **'noLocaleRoute' => null** ]);

hotfix release, v9.3.1

Please update your view files, $noLocaleRoute changed to $routeWithoutLocale.