We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I've set default values to config file based on documentation but they never get updated on my routes.
Expected behavior
Getting my dynamic data meta
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
my controller
use Butschster\Head\Facades\Meta; /// $post = Post::where('slug', $slug)->where('online', true)->with(['user', 'user.posts', 'likes', 'categories'])->first(); if($post){ views($post)->record(); Meta::setTitle('Laravel') ->prependTitle($post->name) ->setKeywords(['a', 'b', 'c']) ->setDescription($post->body); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I've set default values to config file based on documentation but they never get updated on my routes.
To Reproduce
Expected behavior
Getting my dynamic data meta
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
my controller
The text was updated successfully, but these errors were encountered: