fix: Tenant 모델 네임스페이스 참조 오류 수정

- ViewServiceProvider: App\Models\Tenant → App\Models\Tenants\Tenant
- User 모델에 tenant() 관계 추가
This commit is contained in:
2025-11-24 08:50:44 +09:00
parent 0f214459dd
commit 6c73571c0f
2 changed files with 9 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
namespace App\Providers;
use App\Models\Tenant;
use App\Models\Tenants\Tenant;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;