-
Notifications
You must be signed in to change notification settings - Fork 11k
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
Multilingual urls #98
Conversation
Ported from Laravel 3
Someone has developed a bundle for multilangual urls. http://forums.laravel.io/viewtopic.php?id=2200&p=2 |
this is great 👍 |
+1 |
1 similar comment
+1 |
+1 thanks |
+1 |
Not exactly how I want to implement, but I do plan to revisit this and integrate it into L4. |
Eager to see this feature back in Laravel 4, it was really useful and nice to work with. |
Totally agree, 80% of our clients require multilingual sites and from those, all of them want a good SEO. This feature was really nice, it was one of the reasons that made me decide to move from Codeigniter to Laravel. |
+1 |
1 similar comment
👍 |
(y) |
+1 again |
Integrated this in a more cohesive way. Done. Works basically the same... see |
See that it has been removed later. What's the current state on this? |
@tlgreg It caused more problems then it solved in the long run. Maybe Taylor can provide you with more details. But I don't think it'll be coming back in the near future. |
I'm keeping my fingers crossed on this. All my clients require multilingual projects with good SEO as well. Right now it's a nightmare in L4 to achieve this, at least for me. |
I also liked this feature. Made multi-language site much easier. Perhaps it is possible to recreate this functionality as a seperate bundle? |
You can modify the code from this pull request and include it in your |
I think it can currently also be handled like this:
Then you can just use the URL::route() and URL::action() functions, and the locale will be included. The default locale can be left out, but if you want to include it, you can just add it to the language array. |
@barryvdh thanks, thats exactly what I had in mind too. :) |
@barryvdh this is a great solution. would be great if this could be added to the docs somewhere... |
Port of Laravel 3 multilingual URLs