Generics, Mail Command & Migration Enhancements in Laravel

Поділитися
Вставка
  • Опубліковано 11 вер 2024

КОМЕНТАРІ • 20

  • @ultrasys
    @ultrasys Місяць тому +12

    Thank you... "ME" was awesome hahahaha - made my day!

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

    Nice changes and super cool to see a PR made by you Christoph 👌

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

      Thank you so much 🙏 (Christoph)

  • @juanpineda-montoya
    @juanpineda-montoya Місяць тому +5

    Thanks for that PR, saving people time

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

      Glad you like it! (Christoph)

  • @dominikbetlej7114
    @dominikbetlej7114 Місяць тому +1

    Thanks!

  • @JohnWick-od9he
    @JohnWick-od9he Місяць тому +3

    "Hey I'm a cool dev! You can tell because I wear a hat indoors."

  • @Netvirux
    @Netvirux Місяць тому +1

    Hi please I'm a PHP developer with experience in Laravel. I'm now exploring the possibility of integrating Laravel with React Native to build a website and a mobile application simultaneously. I'd love some guidance on how to get started with this project. Specifically, I'm unsure about how to create a mobile app using Laravel and React Native together.

    • @MarlonLCosta
      @MarlonLCosta Місяць тому +10

      Create a REST API with Laravel and Consume this API from any client including your mobile app

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

      @@Netvirux hum, you mention you have experience in Laravel. 30 seconds later, you say you’re unsure about creating a mobile app using Laravel.
      Listen, bro, Laravel is a PHP framework, and PHP is backend oriented despite the fact it that the combination of Laravel with, say, Livewire or even better -in this case-, Inertia, form a very powerful and easy and flexible monolith based 📲💻🖥️ responsive app.
      If your app can be released in the form of a responsive web application, you’re good to go with Laravel and Livewire (or Inertia with, Vue or React).
      If you’re talking about creating a NATIVE mobile app, I suggest you have a look at Flutter.
      Clarify your constraints, first.

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

      i have little tutorial about it

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

      @@shabas_001 please help i need it

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

    How to install Kafa with laravel sail

  • @vinniv6806
    @vinniv6806 Місяць тому +1

    Waiting for performance enhancements. Laravel is so slow now :( I miss old days.

    • @rcnhsuailsnyfiue2
      @rcnhsuailsnyfiue2 Місяць тому +8

      Do you know where the bottleneck is, and are you sure it’s not specific to your app rather than the framework? I’ve worked with Laravel since v4 and if anything it’s only gotten faster…

    • @mind.journey
      @mind.journey Місяць тому

      You need to hone in your profiling skills & tools, because Laravel has not gotten slower in the slightly.
      Queries are usually the biggest culprits (n+1 problem).
      When you have larger datasets, a lot of issues can be mitigated by a good caching strategy.
      Another potential bottleneck is disk access. I've had major slowdowns once when I had split my views into too many blade components. Looping over arrays of hundreds of elements caused a significant performance hit, totally solved by removing the blade components and just moving the component code in the view where it was used.
      You have a lot of work ahead of you, don't give up 😅

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

      @@mind.journey I didn't. I switched with this project to Symfony. End effect? Fast, stable (setup with Turbo Morphing + AssetMapper + Stimulus). I'm using Laravel for small projects now. It's too bloated. But still - waiting for improvements. Old Laravel was so, so good....
      I have both those project made in Symfony and Laravel. Very big database (87gb), complicated template structure (multiple reusable components), services.
      Respond time in Laravel is 300ms. Symfony: 98ms.