Skip to content

Instantly share code, notes, and snippets.

@collinticer
Created July 1, 2020 04:17
Show Gist options
  • Save collinticer/2cae7e8f95e8d235bd3c4627462b25e6 to your computer and use it in GitHub Desktop.
Save collinticer/2cae7e8f95e8d235bd3c4627462b25e6 to your computer and use it in GitHub Desktop.
@section('left-nav')
<nav class="col-sm-3 d-none d-md-block bg-light sidebar pr-0">
<div class="sidebar-sticky mt-5 text-right">
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="{{ route( 'teams.tickets.index', [ 'team' => auth()->user()->recent_team ] ) }}">
Tasks
<i class="fas ml-3 fa-check-double fa-navx text-muted"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route( 'teams.projects.index', [ 'team' => auth()->user()->recent_team ] ) }}">
Projects
<i class="fas ml-3 fa-cube fa-navx text-muted"></i>
</a>
</li>
</ul>
</div>
</nav>
@show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment