home.social

#laravel — Public Fediverse posts

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

  1. Почему social-продукты умирают пустыми

    Когда я начинал делать Gooly, мне казалось, что главная проблема — отсутствие нормального инструмента для организации мероприятий. Но спустя месяцы разработки и общения с пользователями я понял гораздо более неприятную вещь: большинство social-продуктов умирают не из-за плохого кода, а из-за пустоты внутри системы. В этой статье — про cold start, хаос чатов, выгорание организаторов, network effects и то, почему живой Telegram часто побеждает «идеальный» новый сервис.

    habr.com/ru/companies/gooly/ar

    #gooly #стартап #laravel #vue #бизнес #бизнеспроцессы

  2. In today's video, I show the cleanup fix that keeps Vite's HMR from leaving stray timers behind. Same pattern handles normal component unmounting too. #php #laravel masteringlaravel.io/daily/2026

  3. Build-in-public update time. It's been a minute.

    A few things from the past couple months:
    - ArtisanPack UI now supports React and Vue, not just Livewire
    - The visual editor pivoted to React after Livewire + drag-and-drop hit a wall
    - The security package got split into 7 focused packages
    - Keystone CMS — my Laravel CMS for small business client sites — has officially started

    Timelines are still fuzzy. But the work is happening.

    jacobmartella.me/web-developme

    #Laravel #WebDev #BuildInPublic

  4. There's a built-in PHPUnit method for tests that don't really assert anything, and it's not always a drop-in for the workaround you might be using. Today's tip builds on one from earlier this week. #php #laravel masteringlaravel.io/daily/2026

  5. Архитектура Laravel + Centrifugo: кто за что отвечает в real-time системе

    В первой части мы разобрались, что Real-time на Laravel-сайте нужен там, где интерфейс должен получать изменения без перезагрузки страницы: новые уведомления, смену статуса заказа, сообщения в чате, обновления виджетов, события в административной панели. Для таких задач классическая модель HTTP-запроса уже недостаточна, а polling создаёт лишнюю нагрузку на backend. Один из практичных вариантов решения — использовать Centrifugo как отдельный WebSocket-сервер рядом с Laravel-приложением. В этой статье разберём архитектуру Laravel + Centrifugo: за что отвечает Laravel, какую роль выполняет Centrifugo, как frontend подключается к real-time каналу и как выглядит типовой сценарий публикации события, например при изменении статуса заказа.

    habr.com/ru/articles/1035046/

    #realtime #архитектура #laravel #centrifugo #websocket

  6. Computer-assisted development using LLMs - another random tip:
    1) Check your error log daily (as you would with your own code), e.g. Laravel log or similar
    2) And fix bugs as they appear.
    3) Your goal is to have a log without any exceptions bubbling up to the log.
    Au contraire - all exceptions will be caught and properly handled - leaving only items your app actually logs.

  7. Computer-assisted development using LLMs - another random tip:
    1) Check your error log daily (as you would with your own code), e.g. Laravel log or similar
    2) And fix bugs as they appear.
    3) Your goal is to have a log without any exceptions bubbling up to the log.
    Au contraire - all exceptions will be caught and properly handled - leaving only items your app actually logs.

    #tips #webdev #llm #ai #llms #php #laravel #dev

  8. Computer-assisted development using LLMs - another random tip:
    1) Check your error log daily (as you would with your own code), e.g. Laravel log or similar
    2) And fix bugs as they appear.
    3) Your goal is to have a log without any exceptions bubbling up to the log.
    Au contraire - all exceptions will be caught and properly handled - leaving only items your app actually logs.

    #tips #webdev #llm #ai #llms #php #laravel #dev

  9. Computer-assisted development using LLMs - another random tip:
    1) Check your error log daily (as you would with your own code), e.g. Laravel log or similar
    2) And fix bugs as they appear.
    3) Your goal is to have a log without any exceptions bubbling up to the log.
    Au contraire - all exceptions will be caught and properly handled - leaving only items your app actually logs.

    #tips #webdev #llm #ai #llms #php #laravel #dev

  10. Computer-assisted development using LLMs - another random tip:
    1) Check your error log daily (as you would with your own code), e.g. Laravel log or similar
    2) And fix bugs as they appear.
    3) Your goal is to have a log without any exceptions bubbling up to the log.
    Au contraire - all exceptions will be caught and properly handled - leaving only items your app actually logs.

    #tips #webdev #llm #ai #llms #php #laravel #dev

  11. Best PHP APM Tools in 2026: Scout, Tideways, New Relic, Datadog, and Sentry compared for Laravel apps. N+1 detection, PHP-FPM memory, queue workers, CMS support. scoutapm.com/blog/php-monitori #PHP #Laravel #APM #Monitoring

  12. Best PHP APM Tools in 2026: Scout, Tideways, New Relic, Datadog, and Sentry compared for Laravel apps. N+1 detection, PHP-FPM memory, queue workers, CMS support. scoutapm.com/blog/php-monitori #PHP #Laravel #APM #Monitoring

  13. #Laravel #PHP

    Do you map or loop? 👇

    Functional elegance or just fancy syntax? What do you think👇

  14. Real-time на сайте с Laravel и Centrifugo: зачем нужен WebSocket

    Разбираем, зачем нужен real-time на сайте, почему polling создаёт лишнюю нагрузку и как Centrifugo помогает добавить WebSocket в Laravel-приложение без разрушения backend-архитектуры.

    habr.com/ru/articles/1034780/

    #realtime #архитектура #laravel #centrifugo

  15. RE: phpc.social/@denniskoch/116566

    Going to give @brendt’s Tempest a look next time I need to build something.

    Getting disillusioned with #Laravel

  16. Oof, it's disappointing to see that Laravel Live Denmark is giving DHH a stage.

    #Laravel

  17. Building a #Laravel package directory taught me a lot about the ecosystem. Thousands of plugins, wildly varying quality, and developers spending too much time vetting dependencies.

    At #PHPxTokyo on May 23rd I will share what we learned and why LaraPlugins.io exists.

    RSVP: phpx.tokyo/
    Announcement: x.com/phpxtky/status/205414450

    #PHP #programming

  18. PHPUnit lets you assert that an exception was thrown, but what about instead asserting that no exceptions were thrown? Here's the small workaround we lean on. #php #laravel masteringlaravel.io/daily/2026

  19. 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

  20. 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

  21. 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

  22. 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

  23. #Laravel lazy() vs get()

    Did you know.... You can stream large datasets from the DB using lazy() — way more memory-efficient than get().

  24. Just launched the LaraPlugins MCP server on Product Hunt.

    It lets AI agents search our directory of 50,000+ #Laravel packages with real health data. Maintenance scores. Version compatibility. Vendor reputation. All served as structured JSON. No more outdated or hallucinated recommendations.

    One upvote so far. If this sounds useful, your support would mean a lot.

    producthunt.com/products/larap

    #PHP #programming

  25. If you've been refreshing the GitHub Actions tab to see how your pipeline did, there's a much nicer way. #php #laravel masteringlaravel.io/daily/2026

  26. AI coding agents are great, but they frequently hallucinate Laravel packages or suggest outdated ones.

    We built the LaraPlugins MCP server to fix this. Connect it, and every package your agent picks gets verified against our health directory.

    It is free. No installation required.

    Going live on Product Hunt in 15 minutes. Your support means so much to us.

    producthunt.com/products/larap

    #Laravel #PHP #MCP #AI #DevTools

  27. AI coding agents are great, but they frequently hallucinate Laravel packages or suggest outdated ones.

    We built the LaraPlugins MCP server to fix this. Connect it, and every package your agent picks gets verified against our health directory.

    It is free. No installation required.

    Going live on Product Hunt in 15 minutes. Your support means so much to us.

    producthunt.com/products/larap

    #Laravel #PHP #MCP #AI #DevTools

  28. A new **Digging Code** newsletter just dropped. 📩

    📰 Issue title
    **Laravel 13.8**, **Two Alpha Releases** & **AI** in Your **Office Apps**

    👀 Catch the full issue:
    mmramadan.com/newsletter/campa

    📡 Subscribe to stay updated:
    mmramadan.com/newsletter

    🔐 Create your account:
    mmramadan.com/register

    #tech #php #laravel #ai #claude #opensource #github

  29. #Laravel Tip

    Did you know... You can fetch a single column directly with value() — simpler & faster than first().