Top 5 Laravel "Bad Practices" (My Opinion)

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

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

  • @mylesduncanking
    @mylesduncanking 7 месяцев назад +28

    7:55 "the overall message is, always validate the data from your users and never EVER trust them" ... words to live by!

  • @lucastabosa8855
    @lucastabosa8855 5 месяцев назад +7

    Bad pratices: run php artisan migrate:fresh in production

  • @MuhammadUmair-dw5uo
    @MuhammadUmair-dw5uo 4 месяца назад +2

    🎯 Key points for quick navigation:
    00:00 *🚫 Worst Laravel Practices Overview*
    - Definition of bad practices in Laravel
    - Introduction to the top 5 worst Laravel practices
    01:51 *⏱️ Bad Practice #1: N+1 Query*
    - N+1 query is a major cause of performance issues in Laravel
    - Solutions include using Laravel debug tools, proper eager loading, and prevention techniques
    03:01 *💾 Bad Practice #2: Loading Unnecessary Data*
    - Loading full relationships or unnecessary data can lead to performance degradation
    - It's essential to only load the data that is actually needed
    04:12 *🔄 Bad Practice #3: Not Checking Relationships*
    - Failing to check relationships or objects can result in errors, especially when chaining methods
    - Best practice is to validate the existence of objects before using them
    05:21 *🚨 Bad Practice #4: Inconsistent API Status Code*
    - Returning JSON responses with incorrect status codes can lead to confusion for frontend developers
    - Consistency in API status codes, especially for errors, is crucial for clear communication
    06:31 *🔒 Bad Practice #5: Trusting User Data Without Validation*
    - Trusting user input without proper validation can lead to security vulnerabilities like XSS attacks
    - Always validate user data and never assume it is safe to use without validation
    Made with HARPA AI

  • @Claudio_Pereira
    @Claudio_Pereira 7 месяцев назад +8

    Povilas, could you create a version of this article focusing on Filament. A "Top 'n' Filament Bad Practices" would be very welcome. A full course, perhaps, could emerge from this? 😊

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад +4

      Something to think about :) thanks for the idea

  • @ゲンスルー-g2q
    @ゲンスルー-g2q 7 месяцев назад +26

    Bad Practice N. Not Subscribing to Laravel Daily.

  • @shrikantdharam5550
    @shrikantdharam5550 7 месяцев назад +1

    I worked on 3cr+ data in a single table. It is also important to db partition and indexing. Also do not use any hashing in where clause like md5().
    Also use cache mechanism
    By implementing these practice, data retrieval and manipulation become more streamlined, ensuring smooth and efficient database operations even at a large scale.

  • @stojankukrika7242
    @stojankukrika7242 7 месяцев назад +1

    My "Bad practice" I used at the start of the product was to create all kinds of pricing with zero(around 9k pricing combinations with pricing plans and service plans). Now need to find a way to refactor it to stop creating that large amount of pricing without breaking the complete project. Because now those are the biggest tables in the project :(

  • @olivierperrier114
    @olivierperrier114 7 месяцев назад +3

    I love the vintage design of your gum road website!
    One more bad practice I saw in projects in querying data directly from the view like {{ \App\Models\Posts:: newest()->limits(10)-get() }} in blade components

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад +2

      Yes, the violation of MVC became a "not so bad" practice and it's mentioned among the 17 in the tutorial. It used to be bad practice but then they released Livewire Volt... And turned MVC upside down :)
      With vintage theme, it's actually default gumroad :)

  • @kennedymwenda3357
    @kennedymwenda3357 7 месяцев назад +3

    What do you use to write programming E-books?. People recommend Markdown but I find it cumbersome to think about its syntax as well the content you are writing

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад +3

      Yes I write in Markdown, got used to it. In Sublime text as editor. Early notes or plans I write in Google keep, without markdown there.

  • @faiz3711
    @faiz3711 7 месяцев назад +1

    I'm guilty of sending back error code with 200 code with the message of the error, i don't know where i picked it up or started doing it. I even infected my Codeium AI helper with this disease

    • @JarkkoHautakorpi
      @JarkkoHautakorpi 6 месяцев назад

      I just throw an exception, or let it be thrown and let Laravel return it, be it the api route or front route 😀

  • @turculaurentiu91
    @turculaurentiu91 7 месяцев назад +17

    What do you mean 2xx response with error inside is bad? It successfully retrieved the error!

    • @pablo1gustavo
      @pablo1gustavo 7 месяцев назад +3

      😂

    • @amra-dev
      @amra-dev 7 месяцев назад +4

      2xx - success
      4xx - client error
      5xx - server error

    • @jdrab
      @jdrab 7 месяцев назад +6

      you forgot the tags :D somebody already obviously didn't understand.

    • @heitorasf
      @heitorasf 7 месяцев назад

      😂😂😂 Joker

    • @1234matthewjohnson
      @1234matthewjohnson 7 месяцев назад

      Hahaha

  • @jurajrydzi8554
    @jurajrydzi8554 7 месяцев назад +1

    i think you shoud add another bad practise: especially in public method array as parameter it's bad for readeability and its shoud be replaced by object or DTO

  • @bumblebity2902
    @bumblebity2902 6 месяцев назад

    When you made video course about the one and only "clean architecture" on Laravel?

    • @LaravelDaily
      @LaravelDaily  6 месяцев назад

      When the one and only clean architecture is invented :)
      There are many architecture options. I've talked about them in courses like "How to structure Laravel projects" or "SOLID code in Laravel", and others.

    • @bumblebity2902
      @bumblebity2902 6 месяцев назад

      @@LaravelDaily Clean architecture takes project structure to the next level. OOP and SOLID taking to the perfection with strict separation of concerns

  • @youness_boualam
    @youness_boualam 7 месяцев назад +1

    Not using Authorization for actions, is also considered as bad practice

    • @bumblebity2902
      @bumblebity2902 6 месяцев назад

      For what kind of actions?

    • @youness_boualam
      @youness_boualam 6 месяцев назад

      ​@@bumblebity2902 It could be either Controller actions or Livewire actions. Imagine this situation: we have a URL like /store/1/show, where we display a store using its ID. If we didn't set up authorization for the "show" method, I could just change the ID in the URL to something else and see a different store that isn't mine.
      Another situation could happen with Livewire. For example, we have something like wire:click="delete(1)". I could easily right-click and choose "inspect element", then change it to wire:click="delete(2)", and this action would be performed instead.

  • @fabrizziomorenor.6495
    @fabrizziomorenor.6495 6 месяцев назад

    request->all() - Thanks master!

  • @KnightYoshi
    @KnightYoshi 6 месяцев назад

    Depending on where you work, some enforce returning 200 because they define the "resource" as the service that returns data you're trying to get.
    I fundamentally disagree with this approach, but that's the logic those types of places uses

  • @Sergii.Pravdzivyi
    @Sergii.Pravdzivyi 6 месяцев назад

    Bad practice: applying htmlentities() twice instead of just once. Check your article page title ;)

    • @LaravelDaily
      @LaravelDaily  6 месяцев назад

      Thank you, well noticed! :)
      Fixed now.

  • @UsmanAli-yv6vo
    @UsmanAli-yv6vo 7 месяцев назад

    Hey do you recommend Octane? How can we use it?

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад

      You need this fresh video by Aaron Francis: ruclips.net/video/YGBvdAWt0W8/видео.htmlsi=zXo9YF-rVy04wNeY

    • @UsmanAli-yv6vo
      @UsmanAli-yv6vo 7 месяцев назад

      @@LaravelDaily I have watched his video with some other videos but that's all just theory there isn't any detail tutorial to use octane in an actual Laravel working application

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад +2

      Because almost no one is actually using it. 99.9% projects don't need that kind of boost, the performance problems are usually inside the app.
      But you can Google something from spatie, I remember they mentioned using octane but don't remember if they released tutorials about it.

    • @UsmanAli-yv6vo
      @UsmanAli-yv6vo 7 месяцев назад

      @@LaravelDaily thanks

  • @motomono
    @motomono 6 месяцев назад

    If $request->all() is a bad practice why in Quick Admin Panel it is used so often?

    • @LaravelDaily
      @LaravelDaily  6 месяцев назад

      Because that was the tradeoff we had to make to avoid other more important bugs.

    • @motomono
      @motomono 6 месяцев назад +1

      @@LaravelDaily I believe it. It's hard to predict every possibility in such a tool like quick admin panel. It's a good lesson which teaches us that there are always some tradeoffs, isn't it?

    • @LaravelDaily
      @LaravelDaily  6 месяцев назад

      Yes, Laravel is so full of tradeoffs.

  • @eslammostafa1247
    @eslammostafa1247 7 месяцев назад

    Thank you, that's really helpful

  • @LoganathanNatarajanlogudotcom
    @LoganathanNatarajanlogudotcom 6 месяцев назад

    thank you .. Long waited tips..

  • @yungifez
    @yungifez 7 месяцев назад +5

    When your company's codebsse is guilty of all these😂😂

    • @harshmudhar96
      @harshmudhar96 7 месяцев назад

      What is your company's product? Asking for a friend.

    • @yungifez
      @yungifez 7 месяцев назад

      @harshmudhar96 only thing I can say is its animation related

    • @droidTV-ij4ct
      @droidTV-ij4ct 6 месяцев назад

      Can you provide the link to your project?!

    • @yungifez
      @yungifez 6 месяцев назад

      @droidTV-ij4ct oh sorry I can't
      NDA

  • @thomaspotterdotexe
    @thomaspotterdotexe 3 месяца назад

    5:31 The classic indonesian api response

  • @spicynoodle7419
    @spicynoodle7419 7 месяцев назад +1

    Bad practice: not using DI container for binding preconfigured instances. I've seen $stripe = new \Stripe\StripeClient(config('stripe.api_secret')); way too many times man.
    Another bad practice is using env() directly in your code without having a dedicated config in config/foobar.php. Just like not using DI, it makes overriding stuff more difficult. Especially when libraries do it, this is terrible

    • @LaravelDaily
      @LaravelDaily  7 месяцев назад +1

      The second one is included in the list in the article. The first one is pretty rare and does have that big impact imho.

  • @brunosilva-ed4pz
    @brunosilva-ed4pz 7 месяцев назад

    U would cry if i saw the code that my company writes... (I do every day...)

  • @johnnyw525
    @johnnyw525 6 месяцев назад

    Why would you gracefully hide a serious system error (a model didn’t exist where it should)? If the system is broken, fix the system. Don’t hide the error!

  • @sherzod_kudratov
    @sherzod_kudratov 7 месяцев назад +1

    yeap, is_admin = 1 xD

    • @JarkkoHautakorpi
      @JarkkoHautakorpi 6 месяцев назад

      ... put the is_admin=0 into cookie and then use it from there 🤣