18 Laravel/PHP Tips in 10 Minutes: June 2024

Поділитися
Вставка
  • Опубліковано 4 жов 2024
  • A new monthly tradition: a re-cap of Twitter about Laravel/PHP over the last month.
    Links mentioned in the video:
    [My course] PHP for Laravel Developers laraveldaily.c...
    [Video] NEW in Laravel 10.33: Number Formatting Class • NEW in Laravel 10.33: ...
    [Video] Laravel Job Batch: Show Queue Progress • Laravel Job Batch: Sho...
    [Tweet] Martin Joo on Service Classes x.com/mmartin_...
    [Tweet] "I'm switching from Laravel to Rails": Reddit Thread x.com/PovilasK...
    [List] Laravel People to follow on Twitter laraveldaily.c...
    - - - -
    Support the channel by checking out my products:
    My Laravel courses: laraveldaily.c...
    Filament examples: filamentexampl...
    Livewire Kit Components: livewirekit.com
    - - - -
    Other places to follow:
    My weekly Laravel newsletter: us11.campaign-...
    My personal Twitter: / povilaskorop

КОМЕНТАРІ • 28

  • @PabloZagni
    @PabloZagni 3 місяці тому +6

    Yes! Please continue with monthly tips!

  • @mhm2314
    @mhm2314 3 місяці тому +4

    Very good and efficient tips.
    Please continue this.

  • @dsuess
    @dsuess 3 місяці тому +2

    This is a DARN GOOD tradition, thank you!

  • @WilliamWright-k8s
    @WilliamWright-k8s 3 місяці тому +1

    i love this tips make me learn new things, most likely i will forget them again but i know where to come when need remember something

  • @MichalKuzmicki
    @MichalKuzmicki 3 місяці тому +2

    The "tell, don't ask" example is more about two things: declarative programming; and a bit about separating the domain of the code - instead of creating some extended logic in the code, that is not the domain of the lessons (let's say a code for singing in, more about the participant, than the lesson itself), I prefer to create logic of the lesson in the lesson class/domain, and allow other domains to have minimal contact with this logic. Thanks to that when debugging such a code - you won't be surprised by an "alien" code.

  • @piyushgupta2128
    @piyushgupta2128 3 місяці тому +1

    Great work sir 👍, please continue

  • @DoonSafari
    @DoonSafari 3 місяці тому +1

    Yes Please. You are doing great work man❤

  • @HadilCharafeddine
    @HadilCharafeddine Місяць тому

    amazing keep going! 🙏🏻

  • @saravanasai2391
    @saravanasai2391 3 місяці тому

    Wow, that is a great share. Hi chief, I would suggest you make a video related to event-sourcing in Laravel. What are the real-world use cases? A simple explanation that everyone can understand.

    • @LaravelDaily
      @LaravelDaily  3 місяці тому

      I haven't used it myself, so can't explain to others :)

  • @franciscomagalhaes7457
    @franciscomagalhaes7457 3 місяці тому

    This is helpful, thank you.

  • @dsuess
    @dsuess 3 місяці тому +1

    Thanks for re-posting passing variables to a View
    Tip: "Don't use Rails"

  • @TalesGrechi
    @TalesGrechi 3 місяці тому

    These were great tips!

  • @wgblondel
    @wgblondel 3 місяці тому

    Thanks for the tips!

  • @rainfog_mzb
    @rainfog_mzb 3 місяці тому +1

    1:32 Before using to_route(), I usually confuse (how to redirect with route) without looking documentation

  • @_plamp_
    @_plamp_ 3 місяці тому

    Awesome these are nice to know

  • @rakseiify
    @rakseiify 2 місяці тому

    2:03 is this only obvious for those that have done a lot of PHP before doing Laravel?

  • @JamesAutoDude
    @JamesAutoDude 3 місяці тому

    Another thing is making utilities instead of helpers. Game changer 😮

    • @elmalleable
      @elmalleable 3 місяці тому

      What's the difference?

  • @holacuba2001
    @holacuba2001 3 місяці тому

    Hello Povilas, would have a tip for a redirect with string data?
    Within a method I sometimes must redirect to another route, with a string value as parameter.
    The documentation says do this:
    return redirect()->route('profile', ['id' => 1]);
    and it works perfectly. Except that my parameter is a string and the URL looks ulgly because the paramater gets passed as a GET.
    Is there a fix for that?

    • @LaravelDaily
      @LaravelDaily  3 місяці тому

      Not sure, maybe you defined the route the wrong way? I haven't encountered this issue.

    • @holacuba2001
      @holacuba2001 3 місяці тому

      @@LaravelDaily Please try the eample from the book, but with a string parameter (a sentence). As I said, evrything works fine but the URL is ugly.

    • @LaravelDaily
      @LaravelDaily  3 місяці тому

      Sorry, I don't have time to try, could you post the code of your profile route from the routes file?

    • @michalfrantisek
      @michalfrantisek 2 місяці тому

      You must pass HTTP code parameter 307 - Temporary Redirect - to the redirect method.
      With 307 code you are able to redirect POST request.
      Please let me know if it helped you. Thanks.

  • @digitzero3613
    @digitzero3613 3 місяці тому

    What's the point of disabling lazy loading? I though Laravel guys recommend it.

    • @LaravelDaily
      @LaravelDaily  3 місяці тому +2

      Enforcing EAGER loading, to avoid N+1 query problem.

    • @digitzero3613
      @digitzero3613 3 місяці тому +4

      @@LaravelDaily Ohh excuse me, I am so bad with these terms. I was actually thinking about eager loading but didn't realize that lazy loading is different. Thank you!