In my title I've been using @yield('title') for a while to create a dynamic title for every different page. I'd like to take it one step further and do something like this:
@if(@yield('title') == 'post')
<h1> This is the post page </h1>
@endif
But if I try that I get the error:
"The "yield" expression can only be used inside a function"
I've searched around and found things like Section::yield('title') but they all didn't work.
How can I use the value of @yield('title') in an if statement? I know you can send a $title to the view from the controller but I dont think that looks very good.. You would have to define the title twice that way.
Thanks for reading!
let's take a look at your code
let's assume it works. then what does
@section('title')
will hold?Post
? it doesn't make any sense.@yield
is used to replace the content of the section. it shouldn't be under conditional. it shouldn't be use as a variable. it has specific purpose. whatever conditionals you want to use, use it either in view or controller.controller:
that's it. that's how you send a var to the view. i din't see anything wrong with the approach.
for laravel 4.1 and below, you could use this command.
but this behavior has been changed. till 4.1, the vars passed to the view wasn't accessible in layout. now, in 4.2, this behavior is changed and whatever data you pass to the view, it is also present in the controller.