Eloquent Polymorphic Relations: Properly Explained

Поділитися
Вставка
  • Опубліковано 19 вер 2024
  • One video from my course "Eloquent: Expert Level": laraveldaily.t...
    Polymorphic relations are one of the most difficult concept to understand for junior developers, and I tried to do it with a real-life example.

КОМЕНТАРІ • 46

  • @kevinnacario359
    @kevinnacario359 3 роки тому +4

    Thank you so much!!! Was able to get the point of Polymorphic right of the bat.
    Definitely worth it. Hoping I could take your course but it seems its too expensive for me at the moment.

  • @RaphaelPinheiroDantas
    @RaphaelPinheiroDantas 3 дні тому

    thank you for your time. learned after 3 years. you are awesome

  • @wtalkie
    @wtalkie 6 місяців тому

    Great explanation as always. You're the go-to channel for anything laravel-related.

  • @heitorferreira964
    @heitorferreira964 2 роки тому +1

    Thank you, your explanation save my day, I was very confused at beginning and I watched this lesson and debug many times until got the trick how it works under the hood.

  • @shafqatalinawaz6218
    @shafqatalinawaz6218 2 роки тому +1

    Thanks for sharing. I now understand perfectly how to use polymorphic relationships.

  • @andywong2244
    @andywong2244 Рік тому

    i was able to get the concept behind polymorphism at the 1st 3 minutes of your explanation Povilas! you teach very well!

  • @reesss4
    @reesss4 Рік тому

    This is by far the best explanation I have seen! Thank you!

  • @susanjoshi5948
    @susanjoshi5948 4 роки тому +2

    I wish real life relationships were this simple. :D Lit tutorial.

  • @redward4383
    @redward4383 3 роки тому

    Thank you so much, i had this kind of issue,but wasn't aware that these relationships actually exist, you've explained it very well.

  • @georgenikou
    @georgenikou 4 роки тому +2

    Really well explained, thank you very much for this!

  • @kmaphane
    @kmaphane Рік тому

    Best explanation I found. Thanks a mill

  • @VadimBesedin
    @VadimBesedin 3 роки тому

    As always - great explanation with examples. Thank you

  • @Hiltaku
    @Hiltaku 3 роки тому

    Thanks! Love the example. Makes the concept very easy to understand

  • @prianasaputra7583
    @prianasaputra7583 Рік тому

    Thanks, Now I understand this topic.
    Thank you sho much.

  • @linaktashifteam1826
    @linaktashifteam1826 5 років тому +1

    very clear explication, thanks

  • @Egadirov
    @Egadirov 5 років тому +1

    Great example, thanks!

  • @ashique12009
    @ashique12009 2 роки тому +2

    Nicely explained.
    So if we have 3 tables like posts, products and images then we can make polymorphic relationship to bring data in optimized way. This can be done if we create two photo tables one is for post_photos and another is product_photos but for polymorphic relation we can reduce one table here.
    Thanks.

  • @adnanasad4674
    @adnanasad4674 4 місяці тому

    Thanks, I have one question how will we reserve it means Photo::get() and It should fetch relationship data from relevant table example post or product.

  • @anissmarrouch282
    @anissmarrouch282 4 роки тому

    i was confused on this i am doing it in rails its different code wise but im assuming its the same concept thank you for the video and for the excellent explanation

  • @eli-thegreatdiscovery
    @eli-thegreatdiscovery 2 місяці тому

    Great video.

  • @asatbekxalimjonov4005
    @asatbekxalimjonov4005 3 роки тому +1

    amazing

  • @nahueljj
    @nahueljj 3 роки тому +1

    how to update? i have Polymorphic tags, and i can store success but i cant update fine, the result contact the tags,for example
    #hello #word
    and i add , #one.. the result in my input is
    #hello #word #one #hello #word #one
    my code..
    $tags_name = explode(' , ' , $request->tags_name);


    foreach($tags_name as $tag_name)
    {
    $post->tags()->attach(Tag::updateOrCreate(['name'=>$tag_name]));
    }

    • @PovilasKorop
      @PovilasKorop 3 роки тому +1

      What is the error that you're getting?
      Maybe you shouldn't to ->attach() but instead create things manually, like PostTag::create('taggable_id' => $post_id) ... etc? (not sure what your polymorphic model is called, assumg PostTag)

    • @nahueljj
      @nahueljj 3 роки тому

      Hi, thx for the answer,
      My problem is that I don't think I'm using the most optimal solution to update the registry, since I'm removing the tags with dettach and then adding them again ... es.stackoverflow.com/questions/418957/como-hacer-un-update-en-una-tabla-polimorfica,

    • @PovilasKorop
      @PovilasKorop 3 роки тому +1

      @@nahueljj I think it's fine.

  • @opentech5972
    @opentech5972 6 років тому

    That mechanical keyboard sound, satisfying.

  • @VadimBesedin
    @VadimBesedin 3 роки тому

    But if my Models should have only one photo per record, having regular BelongsTo would be totally enough. Am I right?
    Posts
    ---id
    ---text
    ---image_id
    Users
    ---id
    ---name
    ---image_id
    Images
    ---id
    ---filename
    Or there are still advantages to use Polymorphic Relations in this case?

    • @PovilasKorop
      @PovilasKorop 3 роки тому

      If you have only those models strictly, then yes, your structure is good. But if in the future you're planning to have, for example, Comments with image_id or something else with image_id, polymorphic structure would allow you to achieve those new fields without changing any structure of DB cause you would reuse the same images database table.

  • @avfoxstudios3226
    @avfoxstudios3226 2 роки тому

    well explained...bravo

  • @rahwee_khum
    @rahwee_khum 5 років тому

    Thank you for your useful video.

  • @windigo000
    @windigo000 3 роки тому

    cool. 👍 i just can't bring myself to liking this aproach. one-too-many sleepless nights with slow db without keys. :) but it might have it's uses.

  • @dedecovasco
    @dedecovasco 4 роки тому

    Awesome!! Thank you very much

  • @WaheedSindhani
    @WaheedSindhani 4 роки тому

    How do we retrieve all data with relations.

  • @md.rakibuddinrana3765
    @md.rakibuddinrana3765 2 роки тому

    Awesome🥰
    thank you

  • @topalidinka
    @topalidinka 3 роки тому

    Thank you :)

  • @slablife
    @slablife 5 років тому

    Excellent video… you just saved my butt! Do you have any Udemy courses?

    • @PovilasKorop
      @PovilasKorop 5 років тому +1

      Thanks Mike. Not on udemy, but on teachable - see laraveldaily.teachable.com

  • @Виталий96-к4я
    @Виталий96-к4я 3 роки тому

    !!!!!
    Thank you very match !

  • @twentxx
    @twentxx 2 роки тому

    Thanks very much, but this video not include Factories and Seeders

  • @unomas9686
    @unomas9686 3 роки тому

    You are the best teacher !
    From russia. putin-juilo

  • @shubhamsahuSD
    @shubhamsahuSD 9 місяців тому

    Got it

  • @MohamedTrabelsi-g8p
    @MohamedTrabelsi-g8p Місяць тому

    Great explanation From 2024

  • @NMND.
    @NMND. 2 роки тому

    AAAARGH SO BRIGHT! x_x

  • @vitaminabe
    @vitaminabe 3 роки тому

    thank you, very informative!

  • @SalmanMemon_Sam
    @SalmanMemon_Sam 4 роки тому

    best