@if (strpos(env('DB_DATABASE'),'testing') !== false)
[ APAS-TESTING ]
@endif
@if (strpos(env('API_ENDPOINT'),'testing') !== false)
[ API-TESTING ]
@endif
{{-- 1 FISICA , 2 JURIDICA, 3 ADMIN --}}
@if (auth()->check() && auth()->user()->tipoPersona <= 3)
-
Mi ficha
-
Alta Agencias
-
Mis Agencias
@if (session('es_org'))
-
Mis Productores
@endif
@endif
{{-- 3 ADMIN --}}
@if (auth()->check() && auth()->user()->tipoPersona == 3)
-
@endif
{{-- 4 EJECUTIVOS y EXTERNOS --}}
@if (auth()->check() && auth()->user()->tipoPersona == 4)
-
@endif
@guest
-
Ingresar
@if (Route::has('register'))
-
Registrarse
@endif
@else
-
{{ auth()->user()->email }}
@endguest