We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb7c3d2 + 509d2b2 commit 192286fCopy full SHA for 192286f
resources/views/frontend/layouts/app.blade.php
@@ -13,6 +13,7 @@
13
<!-- Meta -->
14
<meta name="description" content="@yield('meta_description', 'Laravel AdminPanel')">
15
<meta name="author" content="@yield('meta_author', 'Viral Solani')">
16
+ <meta name="keywords" content="@yield('meta_keywords', 'Laravel AdminPanel')">
17
@yield('meta')
18
19
<!-- Styles -->
resources/views/frontend/pages/index.blade.php
@@ -1,5 +1,9 @@
1
@extends('frontend.layouts.app')
2
3
+@section('title'){{ $page->seo_title }}@endsection
4
+@section('meta_description'){{ $page->seo_description }}@endsection
5
+@section('meta_keywords'){{ $page->seo_keyword }}@endsection
6
+
7
@section('content')
8
{!! $page->description !!}
9
@endsection
0 commit comments