colinmackinlay

Results 21 comments of colinmackinlay

In RouteServiceProvider.php ``` public function map(Router $router) { ..... **$this->mapTenantRoutes($router);** ..... } protected function mapTenantRoutes(Router $router) { $router->middleware(['web', 'tenancy.enforce']) ->domain('{account}.yourapphostname') ->namespace($this->namespace) ->as('tenant.') ->group(base_path('routes/tenant/mytenantroutes.php')); } ``` In mytenantroutes.php: ``` use Illuminate\Support\Facades\Route;...

Seems this could be related to explicitly setting the width. Is the explicit width important for you? Setting data-position="right" data-alignment="bottom" on your medium drop down which should cause overlap is...

> @calebporzio, thanks for this great plugin. If anyone has some time, could you please let me know if it's possible to do 3rd level of draggable features? @seshac you...

Assume you've done everything here: https://laravel-livewire.com/docs/2.x/nesting-components? If you don't key things properly all sorts of unexpected things happen. I've never actually tried to go to 3 levels but is seems...

Released today by @asantibanez https://github.com/asantibanez/laravel-blade-sortable Hasn't got multi level but I would imagine it could also sort nested components

I've opened a PR #16 to make the docs a bit clearer on that but I'm sure @calebporzio has his hands full getting livewire v2 ready for release :)

A technique that I'm going to try to adapt is this one that I used to really speed up tests with hyn/multitenant: [https://medium.com/@sadnub/faster-multitenant-testing-in-laravel-4769eae4b603](url). It made a huge difference. Before that...

Thanks for the response. Don't quite follow how that helps in the test. Certainly with that enabled I can get a redirect to a tenant page: ``` redirect()->route('tenant.site.area.store')->tenant('testing.host.test') ``` That...

Thanks - tenant_route() sorted it, I can store the domain in the TenantTestCase and just modify all my tests. Couldn't find anything in the documentation about the tenant_route() helper but...

@samtlewis have you got this working in production or staging or even local yet? I've pulled it in and all my app does is attempt to forward any email that...