From 1db2f0913f00897ee48a07c58962f0060f36d70c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 17 Nov 2022 03:39:57 +0100 Subject: [PATCH] add todo --- assets/routes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/routes.php b/assets/routes.php index a27f782d..a9c09797 100644 --- a/assets/routes.php +++ b/assets/routes.php @@ -5,6 +5,7 @@ declare(strict_types=1); use Illuminate\Support\Facades\Route; use Stancl\Tenancy\Controllers\TenantAssetController; +// todo make this work with path identification Route::get('/tenancy/assets/{path?}', [TenantAssetController::class, 'asset']) ->where('path', '(.*)') ->name('stancl.tenancy.asset');