{{-- Navbar --}}
{{ config('app.name', 'Laravel') }}
@guest
{{ __('Login') }}
{{--
{{ __('Login') }}
--}}
@if (Route::has('register'))
{{ __('Cadastro') }}
{{--
{{ __('Cadastro') }}
--}}
@endif @else @if(Auth::user()->tipo == 'administrador') {{-- @component('componentes.navbarAluno') @endcomponent --}} @endif @if(Auth::user()->tipo == 'reitor') {{-- @component('componentes.navbarServidor') @endcomponent --}} @endif @if(Auth::user()->tipo == 'proponente') {{-- @component('componentes.navbarAdministrador') @endcomponent --}} @endif
{{ Auth::user()->name }}
{{-- Link Perfil --}}
{{ __('Minha Conta') }}
{{-- Link Trabalhos --}} {{--
--}}
{{ __('Participante') }}
{{-- Comissão --}} {{-- @foreach ($comissaoEvento as $comissao) @if($comissaoEvento->userId == Auth()->user()->id)
{{ __('Comissão') }}
@endif @endforeach --}} {{-- Link Logout --}}
{{ __('Sair') }}
@csrf
@endguest
@hasSection ('sidebar') @yield('sidebar') @endif {{--
--}} @yield('content') {{--
--}}
@hasSection ('javascript') @yield('javascript') @else @endif