仅限Laravel 5特定页面上的Bootstrap侧栏

I'm pretty new to bootstrap and I'm making a Laravel App. and I just want to make a left sidebar on my page. I don't want to edit the app.blade.php because I don't want to make the sidebar on all pages, just on this specific page. This is my code:

my code

And my page looks like enter image description here

@if(Request::url() == url() . '/your/url/goes/here')
    @include('whatever-you-wish-here')
@endif

This will go in a base view that all other views extend.

So in your case I assume app.blade.php