{{-- Navbar --}}
{{ config('app.name', 'Laravel') }}
@guest
{{ __('Login') }}
{{--
{{ __('Login') }}
--}}
@if (Route::has('register'))
{{ __('Cadastro') }}
{{--
{{ __('Cadastro') }}
--}}
@endif @else @if(Auth::user()->tipo == 'administrador')
Home
Naturezas
Editais
Usuários
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{--
{{ __('Participante') }}
--}}
{{ __('Sair') }}
@csrf
@endif {{-- Pro-reitor --}} @if(Auth::user()->tipo == 'administradorResponsavel')
Home
Editais
Usuários
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
@endif @if(Auth::user()->tipo == 'coordenador')
Home
Meus Editais
Usuários
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
@endif @if(Auth::user()->tipo == 'proponente')
Home
Meus Trabalhos
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
@endif @if(Auth::user()->tipo == 'participante' )
Home
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
@endif @if(Auth::user()->has('avaliadors'))
Home
Trabalhos
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
@endif {{--
{{ Auth::user()->name }}
{{ __('Minha Conta') }}
{{ __('Participante') }}
{{ __('Sair') }}
@csrf
--}} @endguest
@hasSection ('sidebar') @yield('sidebar') @endif {{--
--}} @yield('content') {{--
--}}
@hasSection ('javascript') @yield('javascript') @else @endif