I have a web page and I use a general blade layout to extend it to all the pages that require it. On a certain page, suppose localhost: 8000 / book would like a section of code that extends from the general layout not to be displayed, is it possible to do this?
ex.
<div class="container">
<p>Hola!</p>
</div>
I would like the above code not to be displayed in the localhost section: 8000 / book
Greetings!