Last active
July 1, 2020 05:16
-
-
Save collinticer/2d500eeb26140549ce8fd413c76c6eb9 to your computer and use it in GitHub Desktop.
An example show route with overwriting a left nav item
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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