Code Monkey home page Code Monkey logo

Comments (8)

ivanvermeyen avatar ivanvermeyen commented on May 29, 2024

At first glance, your code looks fine...

When you call...

\Route::localizedUrl($lang)

...your end result is...

/en/article/slug-in-english
/pt/artigo/slug-in-english

Right?
Or is artigo not translated either?

I will try to reproduce this in a test.

from laravel-localized-routes.

sheinfeld avatar sheinfeld commented on May 29, 2024

Hey @ivanvermeyen,

As far as I can see, the problem was with the method localizedUrl.

I googled the problem and found this method that fixed the problem for me in RouteServiceProvider:

Route::macro('currentLocalizedUrl', function ($locale = null, $parameters = null, $absolute = true) {
            $locale = $locale ?? app()->getLocale();
            $parameters = $parameters ?: Route::current()->parameters();
            $currentLocale = app()->getLocale();
            app()->setLocale($locale);
            foreach ($parameters as $attribute => $value) {
                if ($value instanceof Model) {
                    $parameters[$attribute] = $value->getRouteKey();
                }
            }
            app()->setLocale($currentLocale);

            return route(Route::current()->getName(), $parameters, $absolute, $locale);
        });

Let me know what you think :D

from laravel-localized-routes.

ivanvermeyen avatar ivanvermeyen commented on May 29, 2024

That is basically what the included macro should do, but it was expanded to handle unnamed routes and 404 pages, which don't have a Route::current().

Are you running the latest version of this package?

from laravel-localized-routes.

sheinfeld avatar sheinfeld commented on May 29, 2024

I am! That's why is wierd...

from laravel-localized-routes.

ivanvermeyen avatar ivanvermeyen commented on May 29, 2024

I got the issue myself now, will start debugging it :)

from laravel-localized-routes.

sheinfeld avatar sheinfeld commented on May 29, 2024

Cool @ivanvermeyen! I'll be waiting :D

from laravel-localized-routes.

ivanvermeyen avatar ivanvermeyen commented on May 29, 2024

Turns out that I have a different problem.
Because I use a route like posts/{id}/{slug?}, the id is using model binding but the slug is not, so it's just a string.
I'll have to fix that...

But with normal routes like posts/{slug} it should just work, as long as you type hint it in the controller.
The slugs are not cached in some way by the other package?

from laravel-localized-routes.

ivanvermeyen avatar ivanvermeyen commented on May 29, 2024

Hi,

Sorry, seems I lost sight of this issue...
Is this issue still relevant?
Closing for now, but feel free to reopen!

from laravel-localized-routes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.