Builder Design Pattern in Laravel and PHP

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 17

  • @idharfirmansyah1861
    @idharfirmansyah1861 Год назад +1

    Very helpful, hope that next there is a learning that explains clean architecture in laravel

    • @esco_tech
      @esco_tech  Год назад

      Thank you for the kind words. That's a good idea!

  • @allan.koskei
    @allan.koskei Год назад

    Simple and straight to the point. I love your design pattern videos

  • @kingstalker
    @kingstalker Год назад +2

    useful video for beginners

  • @BrawlsterB
    @BrawlsterB Год назад +1

    Very awesome! I appreciate it man.

  • @azaman3772
    @azaman3772 Год назад

    Thanks we expect more

  • @svenst
    @svenst Год назад +1

    Is the __toString() a magic php function or something that the Laravel info command helper is looking for?

    • @esco_tech
      @esco_tech  Год назад +2

      Yes __toString is a magic method. www.php.net/manual/en/language.oop5.magic.php#object.tostring
      Any time PHP tries to convert the object to a string it will look at that method for how to convert it to a string.

    • @svenst
      @svenst Год назад

      @@esco_tech thanks! 👍😋

  • @millennia
    @millennia Год назад

    wooow!! amazing.

    • @esco_tech
      @esco_tech  Год назад +1

      Appreciate the support!

  • @nikza1936
    @nikza1936 Год назад

    Very useful

  • @maryali6910
    @maryali6910 Год назад

    Thanks 🙏

  • @schneidershades
    @schneidershades Год назад

    Domain driven design please can you do a tutorial on this please

  • @andreyboichenko3737
    @andreyboichenko3737 Год назад

    I thought it's a fluent interface, not a builder

    • @esco_tech
      @esco_tech  Год назад

      That is the builder pattern. Fluent would be another name for it.