get data of rows that are not set as foreign key in Laravel
I want to get data of rows from a table that are not set as foreign keys in the related table.
Please guide me on this in Laravel. I have used this but it's returning all data
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->orderBy('created_at', 'DESC')
->paginate(20);
php mysql laravel
add a comment |
I want to get data of rows from a table that are not set as foreign keys in the related table.
Please guide me on this in Laravel. I have used this but it's returning all data
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->orderBy('created_at', 'DESC')
->paginate(20);
php mysql laravel
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45
add a comment |
I want to get data of rows from a table that are not set as foreign keys in the related table.
Please guide me on this in Laravel. I have used this but it's returning all data
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->orderBy('created_at', 'DESC')
->paginate(20);
php mysql laravel
I want to get data of rows from a table that are not set as foreign keys in the related table.
Please guide me on this in Laravel. I have used this but it's returning all data
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->orderBy('created_at', 'DESC')
->paginate(20);
php mysql laravel
php mysql laravel
edited Jan 18 at 13:23
Sayed Mohd Ali
1,0971319
1,0971319
asked Jan 18 at 12:24
OsamaOsama
83
83
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45
add a comment |
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45
add a comment |
1 Answer
1
active
oldest
votes
Thanks every one for your support. The problem was solved. This is the solution. It will be helpful for anyone with same issue. To get rows of data that is not set as foreign key in related table this is the way to get it in laravel.
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->where('bid_requests.client_request_id','=',null)
->orderBy('created_at', 'DESC')
->get();
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%2f54253981%2fget-data-of-rows-that-are-not-set-as-foreign-key-in-laravel%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
Thanks every one for your support. The problem was solved. This is the solution. It will be helpful for anyone with same issue. To get rows of data that is not set as foreign key in related table this is the way to get it in laravel.
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->where('bid_requests.client_request_id','=',null)
->orderBy('created_at', 'DESC')
->get();
add a comment |
Thanks every one for your support. The problem was solved. This is the solution. It will be helpful for anyone with same issue. To get rows of data that is not set as foreign key in related table this is the way to get it in laravel.
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->where('bid_requests.client_request_id','=',null)
->orderBy('created_at', 'DESC')
->get();
add a comment |
Thanks every one for your support. The problem was solved. This is the solution. It will be helpful for anyone with same issue. To get rows of data that is not set as foreign key in related table this is the way to get it in laravel.
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->where('bid_requests.client_request_id','=',null)
->orderBy('created_at', 'DESC')
->get();
Thanks every one for your support. The problem was solved. This is the solution. It will be helpful for anyone with same issue. To get rows of data that is not set as foreign key in related table this is the way to get it in laravel.
$pages = DB::table('client_requests')
->leftJoin('bid_requests', 'client_requests.id', '=', 'bid_requests.client_request_id')
->select('client_requests.*')
->where('bid_requests.client_request_id','=',null)
->orderBy('created_at', 'DESC')
->get();
answered Jan 18 at 16:45
OsamaOsama
83
83
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%2f54253981%2fget-data-of-rows-that-are-not-set-as-foreign-key-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
Why you doesn't want to add a relations in you model and use it?
– Oleg Nurutdinov
Jan 18 at 12:27
Share your table structure with us ? (at least these 2 tables)
– MyLibary
Jan 18 at 15:20
Thanks for your support issue is solved.
– Osama
Jan 18 at 16:45