Best of LaravelApril 2024

  1. 1
    Article
    Avatar of lnLaravel News·2y

    Basset is an alternative way to load CSS & JS assets

    Basset is a better asset helper for Laravel that allows you to load CSS and JS assets directly from the URL. It removes the limitations of the traditional asset() function and provides features such as downloading assets from CDNs, loading vendor and non-public assets, preventing double-loading of assets, and improving performance by using HTTP/2.

  2. 2
    Article
    Avatar of medium_jsMedium·2y

    Laravel 11.x/10.x CRUD Generator

    The updated version of the Laravel CRUD Generator v2.x package provides and generates Controller, Model (with eloquent relations), and Views in Bootstrap/Tailwind CSS for the development of your applications with a single command.

  3. 3
    Article
    Avatar of javarevisitedJavarevisited·2y

    The 2024 Laravel Developer RoadMap

    Learn the road map to become a Laravel developer in 2024. The post provides a guide with links to resources for learning PHP, HTML, CSS, JavaScript, databases, and the Laravel framework.

  4. 4
    Article
    Avatar of communityCommunity Picks·2y

    Laravel Code Tips

    Use `composer outdated --direct` to view outdated dependencies of your Laravel app.

  5. 5
    Article
    Avatar of lnLaravel News·2y

    New Video Series: The Laravel Ecosystem

    Christoph Rumpel is starting a video series on the Laravel YouTube channel that covers Laravel's first-party tools, including free packages and commercial offerings. The first video on Laravel Herd is already available, with more videos planned for weekly release.

  6. 6
    Article
    Avatar of medium_jsMedium·2y

    Enhancing Deployment Workflow: A Step-by-Step Guide to Dockerizing Laravel

    Learn how to Dockerize and optimize a Laravel project for a production environment using PHP-FPM, Nginx, Redis, and MySQL. Dockerizing your Laravel project offers a streamlined approach to deployment, simplifying the process and ensuring consistency across environments.

  7. 7
    Article
    Avatar of communityCommunity Picks·2y

    Laravel Behind the Scenes: Interfaces

    The post discusses the use of interfaces in Laravel and introduces several key interfaces like ArrayAccess, JsonSerializable, Jsonable, Arrayable, Responsable, Htmlable, Renderable, and UrlRoutable.

  8. 8
    Article
    Avatar of lnLaravel News·2y

    Automatic Blade Formatting on Save in PhpStorm

    PhpStorm now supports automatic formatting of PHP files based on standards like PSR-2, PSR-12, Symfony, Laravel, etc. The post discusses how to set up Prettier for formatting Blade files in PhpStorm, including the use of prettier-plugin-blade and prettier-plugin-tailwindcss. It also explains how to enable automatic formatting on save and manually reformat code.