Best of PHPApril 2024

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

  2. 2
    Article
    Avatar of lnLaravel News·2y

    Property Hooks Get Closer to Becoming a Reality in PHP 8.4

    Property Hooks in PHP 8.4 have reached a significant milestone with overwhelming support. Property hooks provide a targeted and purpose-built tool for common property interactions, inspired by languages like Kotlin, C#, and Swift.

  3. 3
    Article
    Avatar of newstackThe New Stack·2y

    Why PHP Usage Has Declined by 40% in Just Over 2 Years

    PHP usage has declined by 40% in just over 2 years, with WordPress moving away from PHP and into JavaScript being a major reason for the decline. The PHP Foundation has been formed to address PHP's public image and continue active development.

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

  5. 5
    Article
    Avatar of communityCommunity Picks·2y

    Laravel Code Tips

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

  6. 6
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Implement JSON Web Tokens (JWTs) in PHP – PHP Authentication Guide

    Learn how to implement JSON Web Tokens (JWTs) in PHP to enhance authentication and data protection.

  7. 7
    Video
    Avatar of mentaloutlawMental Outlaw·2y

    All PHP Applications are Vulnerable

    A 24-year-old bug in the GBC library can be exploited to take over virtually any PHP application.

  8. 8
    Article
    Avatar of communityCommunity Picks·2y

    TensorFlow Object Detection in PHP

    Learn how to run TensorFlow models in PHP using the ONNX Runtime package. The tutorial covers converting a model to ONNX, installing the ONNX Runtime package, loading and manipulating images, and obtaining outputs from the model.

  9. 9
    Article
    Avatar of communityCommunity Picks·2y

    TransformersPHP

    TransformersPHP is a toolkit for PHP developers to easily add machine learning capabilities to their projects by using pre-trained models. It utilizes the ONNX Runtime to run these models locally on the server. The project was inspired by the Xenova/transformers project for JavaScript.

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

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