Releases: codezero-be/laravel-localized-routes
Releases · codezero-be/laravel-localized-routes
Version 2.3.0
- Add support for Laravel 8
Version 2.2.7
- Handle root URL placeholder overriding registered routes (#28)
Version 2.2.6
- Add support for Laravel 7
Version 2.2.5
- Constrain dependency versions
Version 2.2.4
- Accept query string parameters via
Route::localizedUrl()
- Handle optional route parameters with
Route::localizedUrl()
- Handle capitalized route parameters with
Route::localizedUrl()
Version 2.2.3
- Return a URL with query string from
Route::localizedUrl()
- Use the
route()
helper for named routes to support translated slugs with theLang::uri()
macro - Improve unregistered route handling in the
UrlGenerator
Version 2.2.2
- Generate absolute and non absolute URL's using
Route::localizedUrl($locale, $parameters, $absolute)
- Fallback routes no longer require a name of
404
- Refactor code and improve tests
Version 2.2.1
- Fix issue where first slug was duplicated on fallback routes
Version 2.2.0
- Localize 404 and fallback URL's
- Add README instructions on how to localize your 404 pages properly
- Add
Route::isLocalized()
macro - Fix issue with
Route::localizedUrl()
on 404 pages (#16) - Fix issue with
Route::localizedUrl()
on non localized routes - Fix issue with generating localized URL's using custom domains
- Enable use of Route::localizedUrl() with unnamed routes
Version 2.1.0
- Add
Route::localizedUrl()
macro to generate a URL for the current route in any locale.