get data of rows that are not set as foreign key in Laravel












0















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);









share|improve this question

























  • 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
















0















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);









share|improve this question

























  • 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














0












0








0








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);









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












1 Answer
1






active

oldest

votes


















0














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();





share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    0














    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();





    share|improve this answer




























      0














      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();





      share|improve this answer


























        0












        0








        0







        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();





        share|improve this answer













        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();






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 18 at 16:45









        OsamaOsama

        83




        83






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Callistus III

            Plistias Cous

            Index Sanctorum