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 wor
why not pass the title as a variable View::make('home')->with('title', 'Your Title') this will make your title available in $title
View::make('home')->with('title', 'Your Title')
$title