How to use a View Composer variable in the controller
I am trying to use the View Composer $view_name
variable in same controller but it is giving me error.
It is only available to all views, but not for controllers
I want to use that variable in the same controller.
My controller:
public function boot()
{
view()->composer('*', function($view){
$view_name = str_replace('.', '-', $view->getName());
view()->share('view_name', $view_name);
});
$page_name=substr(strrchr(url()->current(),"/"),1);
if($page_name==request()->server('HTTP_HOST')) {
$keywords=keyword::where('page_name','index')->where('active','1')->first();
} else {
$keywords=keyword::where('page_name',$page_name)->where('active','1')->first();
}
}
laravel
add a comment |
I am trying to use the View Composer $view_name
variable in same controller but it is giving me error.
It is only available to all views, but not for controllers
I want to use that variable in the same controller.
My controller:
public function boot()
{
view()->composer('*', function($view){
$view_name = str_replace('.', '-', $view->getName());
view()->share('view_name', $view_name);
});
$page_name=substr(strrchr(url()->current(),"/"),1);
if($page_name==request()->server('HTTP_HOST')) {
$keywords=keyword::where('page_name','index')->where('active','1')->first();
} else {
$keywords=keyword::where('page_name',$page_name)->where('active','1')->first();
}
}
laravel
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the$view_name
variable before it has anything assigned. What is it that your trying to do?
– Yahya Uddin
Nov 21 '18 at 12:56
How exactly do you want to re-use$view_name
? Please show an example or more context.
– Yahya Uddin
Nov 21 '18 at 13:53
add a comment |
I am trying to use the View Composer $view_name
variable in same controller but it is giving me error.
It is only available to all views, but not for controllers
I want to use that variable in the same controller.
My controller:
public function boot()
{
view()->composer('*', function($view){
$view_name = str_replace('.', '-', $view->getName());
view()->share('view_name', $view_name);
});
$page_name=substr(strrchr(url()->current(),"/"),1);
if($page_name==request()->server('HTTP_HOST')) {
$keywords=keyword::where('page_name','index')->where('active','1')->first();
} else {
$keywords=keyword::where('page_name',$page_name)->where('active','1')->first();
}
}
laravel
I am trying to use the View Composer $view_name
variable in same controller but it is giving me error.
It is only available to all views, but not for controllers
I want to use that variable in the same controller.
My controller:
public function boot()
{
view()->composer('*', function($view){
$view_name = str_replace('.', '-', $view->getName());
view()->share('view_name', $view_name);
});
$page_name=substr(strrchr(url()->current(),"/"),1);
if($page_name==request()->server('HTTP_HOST')) {
$keywords=keyword::where('page_name','index')->where('active','1')->first();
} else {
$keywords=keyword::where('page_name',$page_name)->where('active','1')->first();
}
}
laravel
laravel
edited Nov 21 '18 at 12:52
Remul
1,1201113
1,1201113
asked Nov 21 '18 at 12:05
livian shrawnia
197
197
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the$view_name
variable before it has anything assigned. What is it that your trying to do?
– Yahya Uddin
Nov 21 '18 at 12:56
How exactly do you want to re-use$view_name
? Please show an example or more context.
– Yahya Uddin
Nov 21 '18 at 13:53
add a comment |
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the$view_name
variable before it has anything assigned. What is it that your trying to do?
– Yahya Uddin
Nov 21 '18 at 12:56
How exactly do you want to re-use$view_name
? Please show an example or more context.
– Yahya Uddin
Nov 21 '18 at 13:53
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the
$view_name
variable before it has anything assigned. What is it that your trying to do?– Yahya Uddin
Nov 21 '18 at 12:56
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the
$view_name
variable before it has anything assigned. What is it that your trying to do?– Yahya Uddin
Nov 21 '18 at 12:56
How exactly do you want to re-use
$view_name
? Please show an example or more context.– Yahya Uddin
Nov 21 '18 at 13:53
How exactly do you want to re-use
$view_name
? Please show an example or more context.– Yahya Uddin
Nov 21 '18 at 13:53
add a comment |
1 Answer
1
active
oldest
votes
You can create a Middleware to populate a Configuration variable, configuration is always available from all the framework.
public function handle()
{
config(['myCustomConfig.email' => 'me@example.com']);
}
On your controller
$data = config('myCustomConfig.email');
On your view file
<div>{{ config('myCustomConfig.email') }} </div>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53411671%2fhow-to-use-a-view-composer-variable-in-the-controller%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can create a Middleware to populate a Configuration variable, configuration is always available from all the framework.
public function handle()
{
config(['myCustomConfig.email' => 'me@example.com']);
}
On your controller
$data = config('myCustomConfig.email');
On your view file
<div>{{ config('myCustomConfig.email') }} </div>
add a comment |
You can create a Middleware to populate a Configuration variable, configuration is always available from all the framework.
public function handle()
{
config(['myCustomConfig.email' => 'me@example.com']);
}
On your controller
$data = config('myCustomConfig.email');
On your view file
<div>{{ config('myCustomConfig.email') }} </div>
add a comment |
You can create a Middleware to populate a Configuration variable, configuration is always available from all the framework.
public function handle()
{
config(['myCustomConfig.email' => 'me@example.com']);
}
On your controller
$data = config('myCustomConfig.email');
On your view file
<div>{{ config('myCustomConfig.email') }} </div>
You can create a Middleware to populate a Configuration variable, configuration is always available from all the framework.
public function handle()
{
config(['myCustomConfig.email' => 'me@example.com']);
}
On your controller
$data = config('myCustomConfig.email');
On your view file
<div>{{ config('myCustomConfig.email') }} </div>
answered Nov 21 '18 at 14:54
MD. Jubair Mizan
604511
604511
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53411671%2fhow-to-use-a-view-composer-variable-in-the-controller%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Although there are ways to sending variables into a anonymous function and pulling it out, the anonymous function in the composer runs when the view is being rendered. This means you will be using the
$view_name
variable before it has anything assigned. What is it that your trying to do?– Yahya Uddin
Nov 21 '18 at 12:56
How exactly do you want to re-use
$view_name
? Please show an example or more context.– Yahya Uddin
Nov 21 '18 at 13:53