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
Given from the docs:
@yield('section', 'Default Content');
Type in your main layout e.g. "app.blade.php", "main.blade.php", or "master.blade.php"
{{ config('app.name') }} - @yield('title', 'Otherwise, DEFAULT here')
And in the specific view page (blade file) type as follows:
@section('title')
My custom title for a specific page
@endsection