home.social

#laravel — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #laravel, aggregated by home.social.

  1. Когда Laravel Validator становится узким местом при импорте 50 000 строк

    PHP 7.4 / Laravel 8 / PostgreSQL 13 Проблема : импорт 50 тысяч строк занимал около 45 секунд. Первое подозрение: база данных, INSERT, UPSERT, индексы, размер batch и количество запросов. Реальность: бОльшая часть времени уходит на валидацию. Мы начали разбираться, почему проверка нескольких десятков обычных полей на большом массиве данных оказалась значительно дороже самой записи в PostgreSQL. В итоге удалось сократить время валидации с 42,5 секунды до 0,65 секунды , а длительность всего job — примерно с 45 до 4 секунд . В статье покажу, что именно оказалось узким местом, почему стандартный Laravel Validator оказался не самым подходящим инструментом для этого конкретного сценария и почему мы не стали от него отказываться.

    habr.com/ru/articles/1079878/

    #laravel #php #validator

  2. I joined a project where the Vue front end was built into the Docker image with no bind mount, so every change meant a manual rebuild. One addition to the compose file turned that back into a normal dev loop. #php #laravel masteringlaravel.io/daily/2026

  3. Need to process millions of rows?

    gives you 3 options:

    `get()` → 1 query, but loads everything into memory 💥

    `chunk(500)` → multiple queries, 500 records per batch 📦

    `cursor()` → streams records one-by-one with very low memory usage 🚶

    If you're simply processing each record independently, `cursor()` is often the cleanest choice:

  4. Laravel vs Symfony: A Comprehensive Comparison of #PHP #Frameworks

    This article provides a guide concerning #Laravel vs Symfony: a comprehensive comparison of PHP frameworks.
    Laravel vs Symfony: A Comprehensive Comparison of PHP Frameworks
    Laravel and #Symfony are two of the most popular PHP frameworks, widely used for building modern web applications. Both have strong communities, rich ecosystems, and are frequently chosen by ...
    Continued 👉 blog.radwebhosting.com/laravel #websitedevelopment

  5. Laravel vs Symfony: A Comprehensive Comparison of #PHP #Frameworks

    This article provides a guide concerning #Laravel vs Symfony: a comprehensive comparison of PHP frameworks.
    Laravel vs Symfony: A Comprehensive Comparison of PHP Frameworks
    Laravel and #Symfony are two of the most popular PHP frameworks, widely used for building modern web applications. Both have strong communities, rich ecosystems, and are frequently chosen by ...
    Continued 👉 blog.radwebhosting.com/laravel #websitedevelopment

  6. Laravel vs Symfony: A Comprehensive Comparison of #PHP #Frameworks

    This article provides a guide concerning #Laravel vs Symfony: a comprehensive comparison of PHP frameworks.
    Laravel vs Symfony: A Comprehensive Comparison of PHP Frameworks
    Laravel and #Symfony are two of the most popular PHP frameworks, widely used for building modern web applications. Both have strong communities, rich ecosystems, and are frequently chosen by ...
    Continued 👉 blog.radwebhosting.com/laravel #websitedevelopment

  7. Ever handed off a feature request with barely any detail and expected the developer to just figure it out? In this week's podcast, Aaron and I make the case for writing requirements before development starts, and why letting AI write them for you is a trap. #php #laravel masteringlaravel.io/daily/2026

  8. hi devs, i am trying to develop a server for fediverse to use in my laravel blog (newly migrated to) but i am having issue testing and verifying it actually works in real life.
    anyone know any tool to use to debug it easily? for now i only managed to run "activitypub-testing" but looking for other options ideally that do not imply running my own mastodon instance and checking its logs. #php #laravel #federation #programmer #fediverse #testing #developer

  9. hi devs, i am trying to develop a server for fediverse to use in my laravel blog (newly migrated to) but i am having issue testing and verifying it actually works in real life.
    anyone know any tool to use to debug it easily? for now i only managed to run "activitypub-testing" but looking for other options ideally that do not imply running my own mastodon instance and checking its logs. #php #laravel #federation #programmer #fediverse #testing #developer

  10. hi devs, i am trying to develop a server for fediverse to use in my laravel blog (newly migrated to) but i am having issue testing and verifying it actually works in real life.
    anyone know any tool to use to debug it easily? for now i only managed to run "activitypub-testing" but looking for other options ideally that do not imply running my own mastodon instance and checking its logs. #php #laravel #federation #programmer #fediverse #testing #developer

  11. hi devs, i am trying to develop a server for fediverse to use in my laravel blog (newly migrated to) but i am having issue testing and verifying it actually works in real life.
    anyone know any tool to use to debug it easily? for now i only managed to run "activitypub-testing" but looking for other options ideally that do not imply running my own mastodon instance and checking its logs. #php #laravel #federation #programmer #fediverse #testing #developer

  12. hi devs, i am trying to develop a server for fediverse to use in my laravel blog (newly migrated to) but i am having issue testing and verifying it actually works in real life.
    anyone know any tool to use to debug it easily? for now i only managed to run "activitypub-testing" but looking for other options ideally that do not imply running my own mastodon instance and checking its logs. #php #laravel #federation #programmer #fediverse #testing #developer

  13. Tip

    🔐 Need to store sensitive attributes securely?

    Laravel's attribute casting can handle it for you automatically behind the scenes:

  14. #Laravel Tip

    🔐 Need to store sensitive attributes securely?

    Laravel's attribute casting can handle it for you automatically behind the scenes:

  15. #Laravel Tip

    🔐 Need to store sensitive attributes securely?

    Laravel's attribute casting can handle it for you automatically behind the scenes:

  16. »If you hit a bug, describe it to a coding agent and open a PR.« — Taylor Otwell

    This is such a terrible idea.

    #Laravel disabled Issues in some of their Repos. Instead of reporting an issue, you have to open a PR, and the recommendation of the Laravel Head itself is to just vibe code it.

    I really hope this idea will not spread. But so many people follow Taylor Otwell so blindly I would be surprised if this would see almost no backlash.

    stitcher.io/blog/no-more-issues

    #Coding #WebDev #PHP #OpenSource

  17. »If you hit a bug, describe it to a coding agent and open a PR.« — Taylor Otwell

    This is such a terrible idea.

    #Laravel disabled Issues in some of their Repos. Instead of reporting an issue, you have to open a PR, and the recommendation of the Laravel Head itself is to just vibe code it.

    I really hope this idea will not spread. But so many people follow Taylor Otwell so blindly I would be surprised if this would see almost no backlash.

    stitcher.io/blog/no-more-issues

    #Coding #WebDev #PHP #OpenSource

  18. »If you hit a bug, describe it to a coding agent and open a PR.« — Taylor Otwell

    This is such a terrible idea.

    #Laravel disabled Issues in some of their Repos. Instead of reporting an issue, you have to open a PR, and the recommendation of the Laravel Head itself is to just vibe code it.

    I really hope this idea will not spread. But so many people follow Taylor Otwell so blindly I would be surprised if this would see almost no backlash.

    stitcher.io/blog/no-more-issues

    #Coding #WebDev #PHP #OpenSource

  19. »If you hit a bug, describe it to a coding agent and open a PR.« — Taylor Otwell

    This is such a terrible idea.

    #Laravel disabled Issues in some of their Repos. Instead of reporting an issue, you have to open a PR, and the recommendation of the Laravel Head itself is to just vibe code it.

    I really hope this idea will not spread. But so many people follow Taylor Otwell so blindly I would be surprised if this would see almost no backlash.

    stitcher.io/blog/no-more-issues

    #Coding #WebDev #PHP #OpenSource

  20. »If you hit a bug, describe it to a coding agent and open a PR.« — Taylor Otwell

    This is such a terrible idea.

    #Laravel disabled Issues in some of their Repos. Instead of reporting an issue, you have to open a PR, and the recommendation of the Laravel Head itself is to just vibe code it.

    I really hope this idea will not spread. But so many people follow Taylor Otwell so blindly I would be surprised if this would see almost no backlash.

    stitcher.io/blog/no-more-issues

    #Coding #WebDev #PHP #OpenSource

  21. Почему e2e тесты это круто, но никто их не пишет. На примере Laravel Dusk

    Добрый день, я хотел бы поднять крайне недооценённую среди PHP-разработчиков тему e2e-тестов, затронуть бизнес-важность таких тестов, техническую часть и почему их никто не пишет.

    habr.com/ru/articles/1070340/

    #laravel #selenium #dusk #e2eтесты

  22. We changed our name from 'PHP & Laravel development Eindhoven' to 'Full Stack Eindhoven'. The reason is that our former name did not match the fields of interest we were covering anymore. More lectures had a subject not related to PHP or Laravel at all.

    #meetup #usergroup #php #eindhoven #fullStack #laravel

  23. I wish there was something like Filament PHP but using Inertia.

    Currently using Nuxt UI v4, and while it slaps, I'm kind of tired of so much plumbing for things that Filament PHP offers you out-of-the-box.

    Yeah, I'm sill recommending Filament PHP.

    #Programming #PHP #Laravel #Filament #FilamentPHP #InertiaJS #Inertia #JavaScript #Frontend #SoftwareDevelopment #WebDevelopment #WebDev #Vue #Vue3 #NuxtUI #Nuxt

  24. Fuck, #LowBackPain comes again. To much time writing my #Laravel libraries I guess.

    Any domestic treatments? I can barely stand up, not without screaming like a little girl.

    #Health #Pain #LowBack #TreatmentOptions #ChronicPain #BackPainRelief

  25. Juniper provides a technical analysis of AndroxGh0st, a Python-based malware designed to target Laravel applications. The Androxgh0st malware leverages three critical vulnerabilities, all three of which are in the CISA KEV Catalog: Androxgh0st exploits CVE-2021-41773 as its first foothold, then gaining RCE through both CVE-2017-9841 and CVE-2018-15133 (which exploits weaknesses in XSRF-TOKEN handling). IOC provided. 🔗 blogs.juniper.net/en-us/securi

    #AndroxGh0st #thratintel #Laravel #CVE_2021_41773 #CVE_2017_9841 #CVE_2018_15133 #IOC