Fix: Force add super-admin views to git
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m52s

The resources/views directory is ignored by .gitignore, so the custom super-admin
views were not being tracked or deployed, causing 'View [super-admin.session.login] not found'
errors in production. This commit forces them to be tracked.
This commit is contained in:
Cauê Faleiros
2026-02-05 10:54:43 -03:00
parent 16a39a2583
commit 151083ed22
7 changed files with 396 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<div class="h-full w-[270px] flex-shrink-0 border-r bg-white dark:border-gray-800 dark:bg-gray-900 pt-4 hidden lg:block">
<div class="px-4">
<nav class="space-y-1">
<a href="{{ route('super-admin.tenants.index') }}"
class="flex items-center gap-2 px-3 py-2 text-sm font-medium rounded-md {{ request()->routeIs('super-admin.tenants.*') ? 'bg-blue-50 text-blue-700 dark:bg-gray-800 dark:text-blue-400' : 'text-gray-700 hover:bg-gray-50 dark:text-gray-300 dark:hover:bg-gray-800' }}">
<span class="icon-dashboard text-2xl"></span>
Tenants
</a>
</nav>
</div>
</div>