WOW! Laravel's pipeline pattern is AWESOME

Sdílet
Vložit
  • čas přidán 16. 04. 2023
  • Hi guys!
    In this video series, I'll try to showcase two good usecases for the pipeline pattern
    More me:
    przemyslawprzylucki.com
    Saaslaravel:
    saaslaravel.com
  • Věda a technologie

Komentáře • 25

  • @thirdvect0r
    @thirdvect0r Před rokem +19

    The best "advanced" laravel vids on youtube right now! I've been building laravel projects for 5 years and I still learn something from every video you upload, thanks for the great content

    • @saaslaravel
      @saaslaravel  Před rokem +3

      Comments like that make my day! Thank you so much and glad it was valuable

  • @sayatkaldarbekov3474
    @sayatkaldarbekov3474 Před rokem +1

    Never thought that filters may be implemented in such a nice pattern. I always made filtering through hard sql queries in repository. Keep going, your videos are the best laravel content on youtube!

  • @ngetichishmael
    @ngetichishmael Před rokem +2

    This is awesome. Big up.

  • @icantchosemyname
    @icantchosemyname Před měsícem

    I didn’t know about pipeline but i think laravel provides the "when()" method on query builder instances.
    It’s simple and "eloquent" (pun intended 😂 ) i think but you probably already know about it.
    Your post seems to be for demonstrating the pipeline tool, thanks.

  • @tomaszdrabik79
    @tomaszdrabik79 Před rokem

    Great show. And waiting for more :)

  • @johnapuuli2545
    @johnapuuli2545 Před 6 měsíci

    Damn, I have loved how this guy thinks through, punctures and re-evaluates his decision and progress, a sure skills problem-solving mental processes, "THANKS"

  • @tostrinjj
    @tostrinjj Před rokem

    Very nice vid, thanks

  • @ericvaldez174
    @ericvaldez174 Před rokem

    its awesome, it also looks like criteria in l5 repository package

  • @antonioblazquez6666
    @antonioblazquez6666 Před 8 měsíci

    Very good video and channel! I'm thinking to use this to refactor our registration process

  • @thecyrilcril
    @thecyrilcril Před 6 měsíci

    IMO the filters example is a bit over-engineered but the Onboard is superb! by the way I used these often...great video

  • @impulserr
    @impulserr Před 5 měsíci

    Nice pattern, I will maybe try it out ;)

  • @mohamedabidi9870
    @mohamedabidi9870 Před rokem +1

    nice

  • @dmitriykret8938
    @dmitriykret8938 Před rokem +1

    👍

  • @99Spyder99
    @99Spyder99 Před 3 měsíci

    Can this be implemented with repository pattern? to have for example in EmojiRepository in the function getFilterableEmojis() can we move here the logic with the pipeline to return just $filterable->builder->get() and in the controller to have like return EmojiResource::collection(
    $emojiRepository->getFilterableEmojis($request)
    );

  • @iFunkMasterJ
    @iFunkMasterJ Před rokem

    Loving the VSCode setup (looks like VSCode?).
    What’s you’re setup?

    • @saaslaravel
      @saaslaravel  Před rokem +1

      It's actually PhpStorm with Catpuccin theme

  • @trevormanhuwa
    @trevormanhuwa Před rokem +1

    Ey, I love your videos, can you kindly make a video specifically for roles, and tag me on it. 😊

    • @saaslaravel
      @saaslaravel  Před rokem +1

      Hi Trevor! I already have two videos on permissions & roles, you may want to check them out

  • @victortodoran1828
    @victortodoran1828 Před rokem +2

    Like with a lot of other stuff in Laravel
    There was no need to reinvent the Chain Of Responsibility pattern and slap the name Pipeline on it.
    Any developer(java, php, C#) worth their salt knows about the chain of responsibility pattern, I don’t think the same can be said about this Pipeline thingy.
    I’m not even going to go into the world of complexity that is the query building example.
    That being said, thanks for putting the effort of making this video, I learned something new and I appreciate it.

    • @saaslaravel
      @saaslaravel  Před rokem

      I mean you are right - this is CoR, but Laravel called it differently. My purpose here is to show the tools available in the framework.
      The thing is that depending on your usecase a tool can be good or bad. When defining a super complex query that has a bunch of filters, this abstraction works pretty great for me.

  • @free2idol1
    @free2idol1 Před rokem

    13:30 is passing the whole $request to DTO recommended practice? I've known that representation layer should not be aware of the request object.

    • @saaslaravel
      @saaslaravel  Před rokem +2

      So the request itself is not passed to the DTO but to the static function that bootstraps the object. The DTO itself doesn't have a request property or access to it, it's just a helper that bootstraps the class from it that I like to use for convenience as they are usually tied to each other more or less. So often times I'd just have a bunch of these i.e. fromArray, fromRequest, fromCollection etc.

  • @dyrossaur
    @dyrossaur Před měsícem

    Use handle() method instead, not the __invoke().

  • @sameer7100
    @sameer7100 Před 5 měsíci

    issue with the code. at 2:42 message said "Naughty boy" but what if the user is a girl or worse a LGbTV++ or something 😉. PS: it's just a joke and Your code is good thanks for vid.