@props(['seo' => null])
@if($seo)
{{ $seo->title }} | {{ config('app.name', 'sw') }}
{{-- Open Graph Tags --}}
{{-- Twitter Card Tags --}}
{{-- JSON-LD Structured Data --}}
@foreach($seo->jsonLdScripts as $script)
{!! $script !!}
@endforeach
@else
@hasSection('title')
@yield('title') | {{ config('app.name', 'sw') }}
@else
{{ config('app.name', 'sw') }}
@endif
@endif