Download the PHP package larasofthu/localized-routes-plus without Composer

On this page you can find all versions of the php package larasofthu/localized-routes-plus. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package localized-routes-plus

Laravel Localized Routes Plus

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A powerful Laravel package for creating localized routes with advanced features including subdomain support, country-specific routing, and automatic locale management.

Features

🌍 Multiple Localization Strategies

🚀 Framework Integration

⚙️ Flexible Configuration

🔧 Developer-Friendly

Installation

Install the package via Composer:

Publish the configuration file:

Quick Start

Basic Usage

Create localized routes by chaining the localized() method:

Resource Routes

Configuration

The configuration file (config/localized-routes-plus.php) contains all available options:

URL Prefix Localization

Basic Configuration

Route Examples

Including Default Locale in URLs

Subdomain Localization

Configuration

Multiple Domains per Locale

Route Examples

Country-Specific Routing

Configuration

Multiple Countries per Locale

Path Separators

Route Examples

Selective Localization

Whitelist Specific Locales

Blacklist Specific Locales

Advanced Usage

Route Model Binding

Route Parameters

Middleware Integration

The package automatically registers middleware to set the application locale:

Helper Methods

Route Switching

URL Generation

Route Information

Blade Helpers

Language Switcher

Current Locale Detection

Testing

The package includes comprehensive tests covering all functionality:

API Reference

LocalizedRoute Methods

Method Description Example
localized($locales = []) Create localized versions ->localized(['en', 'hu'])
localizedExcept($locales = []) Exclude specific locales ->localizedExcept('de')
locale($locale, $country = null) Get route for locale $route->locale('hu')
getUrl($locale = null, $country = null) Generate URL for locale $route->getUrl('de')
getLocale() Get route locale $route->getLocale()
getCountry() Get route country $route->getCountry()
getSafeName() Get name without locale prefix $route->getSafeName()
is($name) Check route name (locale-agnostic) $route->is('products.index')

Configuration Options

Option Type Default Description
locales array ['en'] Available locales
default_locale string 'en' Default application locale
use_route_prefix_in_default_locale bool false Include prefix for default locale
use_subdomains_instead_of_prefixes bool false Use subdomains instead of prefixes
domains array [] Domain mapping for locales
use_countries bool false Enable country-specific routing
country_path_separator string 'dash' Separator between locale and country
countries array [] Country mapping for locales

Middleware

Class Description Auto-Applied
SetLocaleFromRoute Sets App::setLocale() from route ✅ Yes
SetCountryFromRoute Sets App::setCountry() from route ✅ When countries enabled

Examples

E-commerce Site

Multi-Country Site

Subdomain Setup

Troubleshooting

Common Issues

Route names must be set before localized()

Missing domain configuration for subdomains

Country parameter required when countries enabled

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for details.

Security

If you discover any security vulnerabilities, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of localized-routes-plus with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^9.0||^10.0||^11.0||^12.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package larasofthu/localized-routes-plus contains the following files

Loading the files please wait ....