What's New in Laravel v8.78

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

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

  • @jdlien81
    @jdlien81 2 ปีที่แล้ว +6

    It’s always exciting to see the brisk pace of improvements and evolution of Laravel.
    Good work on the video, Mohamed!

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

    the quality is getting better and better ... and nice shirt Mohamed :D

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

      i agree...i love to see it!!!

  • @DavidSmith-gb6sf
    @DavidSmith-gb6sf 2 ปีที่แล้ว +1

    I appreciate the attention to visual detail.
    It is showing through to me.

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

    I like the new way to set accessors and mutators, really clean and feels like less magic.

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

    That transformation of accessors and mutators is so dope

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

      I like the previous syntax, it is more readable

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

      @@dibbyo456 i prefer this one though it's far more cleaner and easier to read for me

  • @christophrumpel
    @christophrumpel 2 ปีที่แล้ว +13

    Love the new attribute methods

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

      That's my favorite ✨

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

    Its been 9 years Its because of laravel i still use PHP

  • @28.7rf
    @28.7rf 2 ปีที่แล้ว

    استاذ محمد .. قبل كل شي بصراحه جدا فخور بجهودك لتطوير اللارفل .. هناك طلب دائم على المحتوى العربي .. فلماذا لا تكون انت صاحب المحتوى العربي الخاص بلارفل و العمل على فيديوهات بالعربي لدعم الحتوى وسد حاجه المبرمجين العرب

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

    MashaAllahh very good explanation, thanks for updated us on Laravel.

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

    This is dope, I love Laravel

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

    🔥

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

    👌

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

    great video!

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

    thank you for you good content 🙏

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

    Please make tutorial on Laravel octane

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

    what is mutex? thanks

  • @creative-commons-videos
    @creative-commons-videos 2 ปีที่แล้ว

    how is this code different Flight::where('departed', true)->lazy(100) than Flight::where('departed', true)->limit(100)->paginate() ? i guess both will 100 items in chunk

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

      Flight::lazy(100) gets all the flights in chunks of 100, limiting memory usage. Flight::paginate(100) will get you one chunk with 100 flights, but not all the flights. Let's say you need all the flights for a calculation and want to limit memory usage during that calculation, then lazy() could be of help. If you just want to get 100 flights and return them for use in a view, for instance, use pagination.

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

    I hate the new way of writing Atributes. The code handling atrributes u'r showing is too short to be representative. Even with the code related to addresses, code itself start to look very strange. The old getter/setter method is really clean and easier to learn/understand and maintain. What's getting me upset from some new advanced features that are being added to Laravel is that it's becoming more and more cryptic, using all PHP permited and all "tricks" with arrays, keys, indirect calls to methods, ... What led me to Laravel is that contrarily to Symphony, it had clean and simple implementation not dealing on cryptic config files and YAML stupid descriptions. Laravel is slowly adding more and more cryptic way of implementation of features and this is a pitty.