Ollie Read

Results 61 comments of Ollie Read

## Telescope Looking into Laravel Telescope, I've discovered the following: - It's possible to tag requests with the 'tenancy' and 'tenant' for a simple less-intrusive solution - It may be...

## Livewire Cont... ### Update Route Since it is possible to dynamically set the Livewire update route, a route needs to be created during the tenancy setup phase, which adds...

## Filament Cont... To override filament, there are two options. 1. Add `filament/filament` to `dont-discover` in `composer.json` and register a service provider which overrides the default filament one, providing a...

## Fortify To make Fortify multitenanted, the automatic routing needs to be disabled by setting `Fortify::$registersRoutes` to `false`, and then manually registering the routes in a tenanted route group like...

## Fortify Cont... Fortify also uses a few config values to know the routes that it links and redirects to. See: https://github.com/laravel/fortify/blob/f1ad2dd08646fb7d78e609f38e2b1071c71c4e94/config/fortify.php#L20-L60

# Horizon Need to use wildcard queues for name patterns, so each tenant can have their own queue.

The `asset()` helper makes use of `UrlGenerator::asset()`, which generates the URL using several possible values for the host. Here they are, in order of precedence. - `assetRoot` - Set in...

The PR laravel/framework#54530 was merged with a change of the name to `setAssetOrigin`

To set a default parameter in Ziggy, the following needs to be set on [the router](https://github.com/tighten/ziggy/blob/2.x/src/js/Router.js): ``` _config.defaults.{parameter} = {identifier} ``` E.g: https://github.com/tighten/ziggy/blob/73abf72fef00cfd64e3a3e934e2fc1f22c8e1e08/src/js/Router.js#L270-L287

Have added a feature request in tighten/ziggy#830