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.
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