Laravel search function, Search data in database using Model

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 ม.ค. 2025

ความคิดเห็น • 51

  • @phamvanhoai621
    @phamvanhoai621 3 ปีที่แล้ว +1

    thank you. Although I have not learned programming, but watching your videos I can customize my website by myself. 👍

  • @designerandprogrammer2036
    @designerandprogrammer2036 4 ปีที่แล้ว +2

    Beautiful..keep it up...

  • @kristapsb-d3401
    @kristapsb-d3401 2 ปีที่แล้ว

    Lifesaver! Subbed and cant wait for more

  • @lionelmuskwe
    @lionelmuskwe 2 ปีที่แล้ว

    Amazing video. Concise, effective and well explained. Thank you so much. I hope your channel grows well.

  • @abdelhak_codes
    @abdelhak_codes 4 ปีที่แล้ว +4

    thanks a lot you saved me from a big trouble 👍😍👏

  • @arturkhachatryan63
    @arturkhachatryan63 4 ปีที่แล้ว +12

    Not need $searc_text = $_GET['QUERY'];
    Using Request or request helper;
    public function search(Request $request){
    $search_text = $request->get('query');
    }

    • @teteeu1432
      @teteeu1432 3 ปีที่แล้ว

      Thanks, tried it here and it worked!

  • @bonheurtuyikunde5658
    @bonheurtuyikunde5658 3 ปีที่แล้ว

    Thanks man. It is simple and easy yet works.

  • @daybeamx
    @daybeamx 4 ปีที่แล้ว +3

    Thank you so much! You helped me a lot!

  • @bryreyes2159
    @bryreyes2159 2 ปีที่แล้ว +1

    where does the category came from, ->with('category')

  • @codedose865
    @codedose865 4 ปีที่แล้ว +2

    Thanks for the course #laravel #codeonline

  • @fidoz90
    @fidoz90 4 ปีที่แล้ว

    Good job.. clean code wish you the best

  • @oengkimchhay
    @oengkimchhay 3 ปีที่แล้ว +1

    thanks for ur videos I love it

  • @marijastevanovic7309
    @marijastevanovic7309 4 ปีที่แล้ว +2

    Application doesn't show search record on page, but when i write dd() function it show me the correct record

    • @codeonline2683
      @codeonline2683  4 ปีที่แล้ว +2

      I could help if you could paste code of your controller and view..

  • @gaganpokharel7063
    @gaganpokharel7063 4 ปีที่แล้ว +2

    Keep it up man👏😍

  • @AhsanKhan89
    @AhsanKhan89 4 ปีที่แล้ว +2

    Brother. I am trying to remove the white space or ignore the white space between the column value on a where statement.
    For example a user may search for "B35 TYE" or "B35TYE" postcodes, so i need to match on the where statement whether the DB has values stores with or without spaces.
    $jobs->where('CollPCode','LIKE','%'.$colpostcode.'%');
    I want to show these both in suggestion list "B35 TYE" and "B35TYE". Any suggestion? Thanks

  • @ochienoeliud5723
    @ochienoeliud5723 ปีที่แล้ว

    Very helpful, thank you!

  • @DarmowyKursGrafiki
    @DarmowyKursGrafiki 2 ปีที่แล้ว

    Hello my friend! You helped me a lot! Thank you :)

  • @MortalKombatTS
    @MortalKombatTS 3 ปีที่แล้ว

    Omg u are so faking goood, thanks for help my friend

  • @codedose865
    @codedose865 4 ปีที่แล้ว +1

    yeah, Thank you code online... now i can search easily

  • @Edvard-Aliev
    @Edvard-Aliev 3 ปีที่แล้ว +1

    Спасибо мужик! Выручил!

  • @teteeu1432
    @teteeu1432 3 ปีที่แล้ว

    Thank you, nice tutorial

  • @Noone-1980
    @Noone-1980 4 ปีที่แล้ว +1

    Thank you for the video. Do you offer a paid course on How to Create a Simple Rental System? The Transactions form must have an Input Search Box for Customers, and another input Search Box for Items, Due Borrowed, Date Due.

  • @adawiyahabdjalil8156
    @adawiyahabdjalil8156 3 ปีที่แล้ว

    hye! how to search with different table database?

  • @trezstudio2055
    @trezstudio2055 2 ปีที่แล้ว +1

    I need help

  • @omareliotorrescastillo4808
    @omareliotorrescastillo4808 3 ปีที่แล้ว

    Hello, thank you for your video, i am making the same as you but in search users in a database, i did exactly the same as you but when i look for a user in the search field using submit button i get the "Not Found page 404", instead of products i am using users database, above in the Not Found page i get /search?query=ramon, but wit Not found page

  • @danishmirza5857
    @danishmirza5857 3 ปีที่แล้ว +2

    404
    NOT FOUND

  • @Shogunez
    @Shogunez 4 ปีที่แล้ว

    i watched this full course man keep it up! but I'm having a problem with search function. Does it work on Laravel v5.4?

    • @codeonline2683
      @codeonline2683  4 ปีที่แล้ว

      yeah try it and let me know what is the problem...

    • @Shogunez
      @Shogunez 4 ปีที่แล้ว +1

      @@codeonline2683 i solved my problem. added argument to the function and made some changes

    • @Shogunez
      @Shogunez 4 ปีที่แล้ว +1

      public function search(Request $req)
      {
      $search_text = $req->input('query');
      $posts = Post::where('ner', 'LIKE', '%'.$search_text.'%')->get();
      // dd($posts);
      return view('posts/search')->with('posts', $posts);
      }

    • @cuttyflame6804
      @cuttyflame6804 3 ปีที่แล้ว

      @@Shogunez thank you that was helpful

  • @edwinombati9697
    @edwinombati9697 4 ปีที่แล้ว

    thanks man keep it up

  • @renatotravassos3359
    @renatotravassos3359 2 ปีที่แล้ว

    thanks bro

  • @yamanhafez2058
    @yamanhafez2058 2 ปีที่แล้ว +1

    Thank Youu

  • @patricjerold6923
    @patricjerold6923 2 ปีที่แล้ว

    I need search.blade.php code....

  • @ryanhernando9634
    @ryanhernando9634 3 ปีที่แล้ว

    hello i want your help pls. guide me in my simple system projects
    I hope that I can communicate with you sirr plss. help

  • @myat5556
    @myat5556 4 ปีที่แล้ว

    Thanks you your code online

  • @mrdr194
    @mrdr194 3 ปีที่แล้ว

    public function search()
    {
    $search_text = $_GET ('query');
    $products = Product::where('title','LIKE','%'.$search_text, '%')->get();
    return view('products.search',compact('products'));
    }

  • @commercial-center6183
    @commercial-center6183 2 ปีที่แล้ว

    "404" x_x

  • @utkarshshuklacse
    @utkarshshuklacse ปีที่แล้ว +1

    Thanks bro