Best of LaravelFebruary 2024

  1. 1
    Article
    Avatar of medium_jsMedium·2y

    Use Laravel Collection Like a Pro

    Learn how to use Laravel Collection like a pro, refactor code using Laravel collection methods, and utilize collection pipeline programming.

  2. 2
    Article
    Avatar of lnLaravel News·2y

    New Laravel 11 Apps Include a Health Check Endpoint

    Laravel 11 includes a health check endpoint for new applications. The endpoint is configurable and returns an animated 'Application up' health page in the browser.

  3. 3
    Article
    Avatar of lnLaravel News·2y

    Create Elegant Discord Bots with Laracord

    Laracord is a micro-framework to build Discord bots with Laravel. It provides features for commands, slash commands, events, and more. It also offers optional HTTP server support for webhooks and API interaction. Get started with Laracord at laracord.com.

  4. 4
    Article
    Avatar of awegoAwesome Go·2y

    Goravel Alternatives and Reviews (Jul 2023)

    Discover alternatives to Goravel, including modern-go-application, Fiber, WorkOS, and more. Find out what people are saying about Goravel in the reviews and mentions section.

  5. 5
    Article
    Avatar of lnLaravel News·2y

    Modularize Your Laravel Application With the Modular Package

    Learn how to modularize your Laravel application with the InterNACHI/modular package. It provides convenience commands and tools for creating modules within your Laravel application while still following Laravel conventions.

  6. 6
    Article
    Avatar of lnLaravel News·2y

    Model Casts are moving to methods in Laravel 11

    Laravel 11 introduces a new method for defining model casts, allowing the use of static methods. The update is backward-compatible with Laravel 10.

  7. 7
    Article
    Avatar of medium_jsMedium·2y

    Exploring Seamless Development and Deployment: Laravel, Docker, and CI Part I

    This post explores seamless development and deployment using Laravel, Docker, and Continuous Integration (CI). It explains the reasons for adopting Docker and the benefits it provides. The post also provides a step-by-step guide on creating a Laravel project and setting up a Docker environment. The upcoming parts will cover the continuous integration aspect.

  8. 8
    Article
    Avatar of lnLaravel News·2y

    Protect Routes with JWT Tokens Using This Package for Laravel

    Protect Routes with JWT Tokens Using This Package for Laravel makes it easy to generate, consume, and protect routes with JWT tokens in Laravel by providing a JWT facade with helper methods, enforcing a minimal set of claims, and offering HTTP Middleware and Request macro functionality.

  9. 9
    Article
    Avatar of lnLaravel News·2y

    The once() Memoization Helper is Coming to Laravel 11

    Laravel 11 introduces the once() function, which ensures that the same value is returned no matter how many times an object method is called. It is useful when you want to ensure that code runs only once.