Laravel - Check if @yield empty or not
laravel, laravel-4, php
Solution
There is probably a prettier way to do this. But this does the trick.
@if (trim($__env->yieldContent('title')))
<h1>@yield('title')</h1>
@endif
Problem
Is it possible to check into a blade view if @yield have content or not? I am trying to assign the page titles in the views: ``` @section("title", "hi world") ``` So I would like to check in the main layout view... something like: ``` <title> Sitename.com {{ @yield('title') ? ' - '.@yield('title') : '' }} </title> ```