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.
12 lines
657 B
PHP
12 lines
657 B
PHP
<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>
|