Search code examples
phplaravellaravel-5metalaravel-5.7

How i can Add Metas like as Title, Description, Keywords in my laravel5.7 Website


I want different title, description and keywords on each and every product page and category page in my laravel website.

How can I make my website seo friendly to do this?

I am using laravel 5.7.


Solution

  • In default.blade.php or master balde file you can create yield() and in blade file add section()

    Example : app.blade.php

     @yield('meta')
    

    in View blade file somefile.blade.php

    @section('meta')
        ....
        <meta property="title" content="Place your data here">
        <meta property="keywords" content="Place your data here">
        ....
    @endsection