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:
@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