passing different type variables to the view from controller in laravel
i want to pass two variables called as repcounter and suppliers to the view to do two different task.
here is my function in controller,
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers'));
}
this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
so how to send this two varibles to the dashboard.blade.php view?
laravel model-view-controller
add a comment |
i want to pass two variables called as repcounter and suppliers to the view to do two different task.
here is my function in controller,
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers'));
}
this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
so how to send this two varibles to the dashboard.blade.php view?
laravel model-view-controller
add a comment |
i want to pass two variables called as repcounter and suppliers to the view to do two different task.
here is my function in controller,
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers'));
}
this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
so how to send this two varibles to the dashboard.blade.php view?
laravel model-view-controller
i want to pass two variables called as repcounter and suppliers to the view to do two different task.
here is my function in controller,
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers'));
}
this is how i send suppliers data. it worked fine. but i don't have an idea to send repcounter and suppliers at once.. each time i try i gave error undefined variable.
so how to send this two varibles to the dashboard.blade.php view?
laravel model-view-controller
laravel model-view-controller
asked Nov 22 '18 at 8:16
Pasindu SenarathPasindu Senarath
119116
119116
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
You should try this:
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers','repcounter'));
}
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same asrepcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
add a comment |
Replace:
return view('dashboard', compact('suppliers'));
With the following code:
return view('dashboard', compact('suppliers,'repcounter'));
add a comment |
You can pass multiple variables to the view by nesting the data you want in an array. See below code.
public function admin()
{
//create an empty array
$response = array();
//nest your data insde the array instead of creating variables
$response['suppliers'] = SupplierData::all();
$response['repcounter'] = SalesRep::count();
return view('dashboard', compact('response'));
}
Inside your View, you can access them as below
$response['suppliers']
$response['repcounter']
add a comment |
This is how I'd implement it
public function admin()
{
$data['suppliers'] = SupplierData::all();
$data['repcounter']= SalesRep::count();
return view('dashboard', $data);
}
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%2f53426508%2fpassing-different-type-variables-to-the-view-from-controller-in-laravel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should try this:
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers','repcounter'));
}
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same asrepcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
add a comment |
You should try this:
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers','repcounter'));
}
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same asrepcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
add a comment |
You should try this:
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers','repcounter'));
}
You should try this:
public function admin()
{
$suppliers = SupplierData::all();
$repcounter= SalesRep::count();
return view('dashboard', compact('suppliers','repcounter'));
}
answered Nov 22 '18 at 8:18
user10186369
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same asrepcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
add a comment |
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same asrepcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
@Pasindu Senarath: If my answer is work for you then please accept my answer
– user10186369
Nov 22 '18 at 8:24
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
thanks it worked. can i use this for more variables? or is there a better way to do this?
– Pasindu Senarath
Nov 22 '18 at 8:25
@PasinduSenarath: Yes you add more variables same as
repcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Yes you add more variables same as
repcounter
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
@PasinduSenarath: Please accept my answer
– user10186369
Nov 22 '18 at 8:27
add a comment |
Replace:
return view('dashboard', compact('suppliers'));
With the following code:
return view('dashboard', compact('suppliers,'repcounter'));
add a comment |
Replace:
return view('dashboard', compact('suppliers'));
With the following code:
return view('dashboard', compact('suppliers,'repcounter'));
add a comment |
Replace:
return view('dashboard', compact('suppliers'));
With the following code:
return view('dashboard', compact('suppliers,'repcounter'));
Replace:
return view('dashboard', compact('suppliers'));
With the following code:
return view('dashboard', compact('suppliers,'repcounter'));
answered Nov 22 '18 at 8:22
dexterdexter
1,2731819
1,2731819
add a comment |
add a comment |
You can pass multiple variables to the view by nesting the data you want in an array. See below code.
public function admin()
{
//create an empty array
$response = array();
//nest your data insde the array instead of creating variables
$response['suppliers'] = SupplierData::all();
$response['repcounter'] = SalesRep::count();
return view('dashboard', compact('response'));
}
Inside your View, you can access them as below
$response['suppliers']
$response['repcounter']
add a comment |
You can pass multiple variables to the view by nesting the data you want in an array. See below code.
public function admin()
{
//create an empty array
$response = array();
//nest your data insde the array instead of creating variables
$response['suppliers'] = SupplierData::all();
$response['repcounter'] = SalesRep::count();
return view('dashboard', compact('response'));
}
Inside your View, you can access them as below
$response['suppliers']
$response['repcounter']
add a comment |
You can pass multiple variables to the view by nesting the data you want in an array. See below code.
public function admin()
{
//create an empty array
$response = array();
//nest your data insde the array instead of creating variables
$response['suppliers'] = SupplierData::all();
$response['repcounter'] = SalesRep::count();
return view('dashboard', compact('response'));
}
Inside your View, you can access them as below
$response['suppliers']
$response['repcounter']
You can pass multiple variables to the view by nesting the data you want in an array. See below code.
public function admin()
{
//create an empty array
$response = array();
//nest your data insde the array instead of creating variables
$response['suppliers'] = SupplierData::all();
$response['repcounter'] = SalesRep::count();
return view('dashboard', compact('response'));
}
Inside your View, you can access them as below
$response['suppliers']
$response['repcounter']
answered Nov 22 '18 at 8:31
SheharaShehara
1013
1013
add a comment |
add a comment |
This is how I'd implement it
public function admin()
{
$data['suppliers'] = SupplierData::all();
$data['repcounter']= SalesRep::count();
return view('dashboard', $data);
}
add a comment |
This is how I'd implement it
public function admin()
{
$data['suppliers'] = SupplierData::all();
$data['repcounter']= SalesRep::count();
return view('dashboard', $data);
}
add a comment |
This is how I'd implement it
public function admin()
{
$data['suppliers'] = SupplierData::all();
$data['repcounter']= SalesRep::count();
return view('dashboard', $data);
}
This is how I'd implement it
public function admin()
{
$data['suppliers'] = SupplierData::all();
$data['repcounter']= SalesRep::count();
return view('dashboard', $data);
}
edited Nov 22 '18 at 10:30
Gabriel M
1,15641223
1,15641223
answered Nov 22 '18 at 9:57
M. RafiM. Rafi
15
15
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.
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%2f53426508%2fpassing-different-type-variables-to-the-view-from-controller-in-laravel%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