Fluent Email Rules, Action Filters & Finally Pipeline in Laravel v11.38

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

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

  • @HarryEdwards-zk6ok
    @HarryEdwards-zk6ok 17 ชั่วโมงที่ผ่านมา

    I am a beginner in Laravel, but I love these features and I love how powerful these features can be. Thanks to Laravel Community!

    • @LaravelPHP
      @LaravelPHP  15 ชั่วโมงที่ผ่านมา +1

      Our pleasure! 🙏 (Christoph)

  • @dominikbetlej7114
    @dominikbetlej7114 18 ชั่วโมงที่ผ่านมา +1

    Thanks!

  • @omitobisam
    @omitobisam 14 ชั่วโมงที่ผ่านมา

    1. I wish the Route filter could take more arguments e.g filter by action, then path, etc:
    2. Pipeline is awesome.
    Could even be:
    ->finally($this->cleanup(...))
    ->then($this->complete(...))

  • @betweencodes
    @betweencodes 17 ชั่วโมงที่ผ่านมา +1

    My intuition is to put ->finally(...) chained after ->then(...) - does it work, or is it automatically ran after, and thus never if ->then() fails?

    • @ericmp1199
      @ericmp1199 17 ชั่วโมงที่ผ่านมา

    •  12 ชั่วโมงที่ผ่านมา +1

      It'd be the same as pipeline is like a builder pattern where you configure the pipeline obj instance and then it runs, so "order of factors does not alter the product"