Skip to content

Instantly share code, notes, and snippets.

@collinticer
Last active July 1, 2020 05:16
Show Gist options
  • Save collinticer/2d500eeb26140549ce8fd413c76c6eb9 to your computer and use it in GitHub Desktop.
Save collinticer/2d500eeb26140549ce8fd413c76c6eb9 to your computer and use it in GitHub Desktop.
An example show route with overwriting a left nav item
@extends( 'layout.app' )
@section( 'tasks-left-nav-item' )
<li class="nav-item">
<a class="nav-link active" href="{{ route( 'teams.tickets.index', [ 'team' => auth()->user()->recent_team ] ) }}">
Tasks <span class="sr-only">(current)</span>
<i class="fas ml-3 fa-check-double fa-navx text-muted"></i>
</a>
</li>
@overwrite
@section( 'content' )
{{-- this section does not have content --}}
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment