Ivan Vermeyen
Ivan Vermeyen
Add the ability to configure custom slugs values for locales, in addition to localized domains. Maybe something in the lines of: ```php 'supported-locales' => ['en', 'nl'], 'domains' => [ 'en'...
Enable the combined use of localized domains and slugs. Fictional use case: | Locale | URL | Description | | ------- | ----------------------- | ------------------ | | `en` | `https://example.be/en`...
When adding the `SetLocale` middleware that comes with this package, it makes sense that the detection "just works". Right now there is some basic detection logic in this package in...
It would be convenient to have a short `Route::isFallback()` method, for example when generating a locale switcher like this: ```blade @foreach(config('localized-routes.supported-locales') as $locale) @if ((Route::isLocalized() || Route::isFallback()) && ! App::isLocale($locale))...
It seems that the `where` clause in the `unique_translation` rule is case sensitive. https://github.com/codezero-be/laravel-unique-translation/blob/1eb3d56b1f4af36b4985730619838bb124436b81/src/UniqueTranslationValidator.php#L161-L164 According to my Google searches, MySQL is supposed to be case insensitive when using a collation...
Hello I'm working on a fairly simple but should-be-flexible posts package to use in different scenarios. I'm using your package and the `OptimusEncodedRouteKey` trait and found that I needed to...
Hi, Just FYI: I've put together a validation rule that uses the `resolveRouteBinding()` method on a model to check if a record exists in the database. Sort of like Laravel's...
Hello, Thanks for creating this package! The Google API is a bit difficult to find your way in if you don't use it alot (at least it was for me),...
Support Livewire (#58) Attempt to create a fresh Request from the current URL. If this works we can pass `Livewire::originalUrl()` when the `{locale}/livewire/message/{name}` endpoint is accessed. Unfortunately `Livewire::originalUrl()` does not...
Hello! First of all, your package is awesome! I love it :) For my own site, I created a small package that allows me to do something as simple as:...