├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ └── run-tests.yml ├── LICENSE.md ├── README.md ├── UPGRADE.md ├── composer.json ├── config └── localizer.php └── src ├── Detectors ├── AppDetector.php ├── BrowserDetector.php ├── CookieDetector.php ├── Detector.php ├── OmittedLocaleDetector.php ├── RouteActionDetector.php ├── SessionDetector.php ├── UrlDetector.php └── UserDetector.php ├── Localizer.php ├── LocalizerServiceProvider.php ├── Middleware └── SetLocale.php └── Stores ├── AppStore.php ├── CookieStore.php ├── SessionStore.php └── Store.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/composer.json -------------------------------------------------------------------------------- /config/localizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/config/localizer.php -------------------------------------------------------------------------------- /src/Detectors/AppDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/AppDetector.php -------------------------------------------------------------------------------- /src/Detectors/BrowserDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/BrowserDetector.php -------------------------------------------------------------------------------- /src/Detectors/CookieDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/CookieDetector.php -------------------------------------------------------------------------------- /src/Detectors/Detector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/Detector.php -------------------------------------------------------------------------------- /src/Detectors/OmittedLocaleDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/OmittedLocaleDetector.php -------------------------------------------------------------------------------- /src/Detectors/RouteActionDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/RouteActionDetector.php -------------------------------------------------------------------------------- /src/Detectors/SessionDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/SessionDetector.php -------------------------------------------------------------------------------- /src/Detectors/UrlDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/UrlDetector.php -------------------------------------------------------------------------------- /src/Detectors/UserDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Detectors/UserDetector.php -------------------------------------------------------------------------------- /src/Localizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Localizer.php -------------------------------------------------------------------------------- /src/LocalizerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/LocalizerServiceProvider.php -------------------------------------------------------------------------------- /src/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Middleware/SetLocale.php -------------------------------------------------------------------------------- /src/Stores/AppStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Stores/AppStore.php -------------------------------------------------------------------------------- /src/Stores/CookieStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Stores/CookieStore.php -------------------------------------------------------------------------------- /src/Stores/SessionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Stores/SessionStore.php -------------------------------------------------------------------------------- /src/Stores/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-localizer/HEAD/src/Stores/Store.php --------------------------------------------------------------------------------