Skip to content

Instantly share code, notes, and snippets.

@collinticer
Created July 1, 2020 04:21
Show Gist options
  • Save collinticer/13acc7dcb05d4acaa35c8cc007a5b314 to your computer and use it in GitHub Desktop.
Save collinticer/13acc7dcb05d4acaa35c8cc007a5b314 to your computer and use it in GitHub Desktop.
With an active link to overwrite
@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 active" 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>
@overwrite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment