Skip to content

Instantly share code, notes, and snippets.

@collinticer
Last active July 1, 2020 04:23
Show Gist options
  • Select an option

  • Save collinticer/13a98b68647b971e980afc8a8bd9cb5f to your computer and use it in GitHub Desktop.

Select an option

Save collinticer/13a98b68647b971e980afc8a8bd9cb5f 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">
@section( 'tasks-left-nav-item' )
<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>
@show
@section( 'projects-left-nav-item' )
<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>
@show
</ul>
</div>
</nav>
@show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment