Fixed issue with undefined variable meta title
This commit is contained in:
parent
2a52d24093
commit
8f34c70ab9
|
|
@ -17,7 +17,7 @@
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
@section('page_title')
|
@section('page_title')
|
||||||
{{ $metaTitle ?? "" }}
|
{{ isset($metaTitle) ? $metaTitle : "" }}
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('head')
|
@section('head')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue