Best of LaravelMarch 2023

  1. 1
    Article
    Avatar of freekFREEK.DEV·3y

    MySQL for Developers

    Freek Van der Herten's blog on PHP, Laravel and JavaScript for Developers Link is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more. You'll get a notifications for us when something's wrong.

  2. 2
    Article
    Avatar of lnLaravel News·3y

    Flaky for Laravel

    Flaky for Laravel is a package by Aaron Francis that helps handle intermittent failures caused by unreliable third parties. It provides various time-based methods, count-based failures, immediate retries, reporting failures, and more.

  3. 3
    Article
    Avatar of lnLaravel News·3y

    Valet 4.0 is released

    Valet 4.0 has been released with significant changes to the internals for improved stability and ease of use. It introduces new features such as a status command, ngrok upgrades, and integrated Expose sharing. Upgrading from Valet 3 involves updating the composer requirement and running valet install. The .valetphprc files should be renamed to .valetrc with updated contents. Valet 4 requires PHP 8.0+ but allows for setting individual sites to use older versions. The release focuses on stability and lays the groundwork for future enhancements.

  4. 4
    Article
    Avatar of lnLaravel News·3y

    Laravel 10.4 Released

    Laravel 10.4 was released with new features such as the File::json() method, assertUnsupportedMediaType() method, and the ability to convert an existing HasMany relationship to HasOne.

  5. 5
    Article
    Avatar of freekFREEK.DEV·3y

    Avoiding one-liners in PHP

    Avoiding one-liners in PHP Link – localheinz.com is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more. You'll get notifications for us when something's wrong.

  6. 6
    Article
    Avatar of lnLaravel News·3y

    Replace Raw Query Calls With Laravel Query Expressions

    The Query Expressions package for Laravel replaces raw query calls with expressions. The package builds on new features introduced in Laravel 10 to solve that problem. If you'd like to learn more about this package, check out laravel-query-expressions on GitHub.

  7. 7
    Article
    Avatar of lnLaravel News·3y

    Modelling Busines Processes in Laravel

    Learn how to model business processes in Laravel using clean and elegant code. The process involves creating a user and order, accepting payment, sending an email, and redirecting the customer. By moving the order process to a background job, the code becomes more fault-tolerant. The Pipeline facade is used to build the business process and automate it efficiently.