Jan 24, 2016
10
Level 1
Meta Tags
Hello, i google this question, but i found the answer in video where i must pay for one month to wath video where explain how to create meta tags. So, maybe some one explain me, or give some url for topic, where i can see how to add to
description, title and keywords.... and other features...Level 30
@Donika For example. Its up to you how you gonna make it. For example: My post view looks like this:
@extends('app')
@section('title'){!! $tutorial->title !!} @stop
@section('og-title'){!! $tutorial->title !!} @stop
@section('meta-description'){!! $tutorial->meta_description !!} @stop
@section('content')
...
...
...
And my header.blade.php looks like this
...
...
<title>@yield('title', 'Shopware Agentur, Tutorials, Online Kurse & Hosting')</title>
<meta property="og:title" content="@yield('og-title', 'Shopware Agentur, Tutorials, Online Kurse & Hosting.')" />
<meta name="description" content="@yield('meta-description', 'Shopware Agentur, Tutorials, Online Kurse & Hosting.')" />
....
1 like
Please or to participate in this conversation.