Best of Laravel NewsFebruary 2022

  1. 1
    Article
    Avatar of lnLaravel News·4y

    Laravel 9 is Now Released!

    Laravel 9 is the next long-term support version (LTS) and will receive bug fixes until February 2024. The Laravel website got a fresh new design for the launch of Laravel 9. Flysystem 3.x, Improved Eloquent accessors/mutators, and many more features.

  2. 2
    Article
    Avatar of lnLaravel News·4y

    Keeping your .env.example file updated

    Envy is a Laravel package that checks your .env.example file for missing environment variables. It is not a sync-up between .env and.example files. It reads all of your project's config files (or any other files you've configured) and finds calls to the env function. Then, it compares those calls to what's contained inside your.env file. With that knowledge it is able to suggest additions or removals for you.

  3. 3
    Article
    Avatar of lnLaravel News·4y

    Manage Git Branches with git-trim

    The git-trim command is a way to quickly remove merged, pruned, untracked, and stale branches in Git repositories. You can download and try this command out via NPM or as an Oh-My-Zsh plugin. If you'd like to learn more about the source code, you can check it out on GitHub at jasonmccreary/git- Trim.