Best of Laravel NewsJune 2024

  1. 1
    Article
    Avatar of lnLaravel News·2y

    SQLite Studio is a SQLite Database Explorer

    SQLite Studio is a lightweight, single-command database explorer for SQLite databases, which also supports connections to local SQLite databases, remote libSQL Servers, and PostgreSQL Servers. It features an intuitive interface with an overview of metadata, infinite scroll for rows view, and a custom query page. The backend is built with Rust while the frontend leverages TypeScript, React, Tailwind CSS, and Vite. SQLite Studio is open-source and available on GitHub.

  2. 2
    Article
    Avatar of lnLaravel News·2y

    A Lightweight Cart Package for Laravel

    The binafy/laravel-cart package integrates shopping cart functionality into Laravel applications, simplifying tasks like storing and managing cart items, supporting multiple payment gateways, and handling recurring payments. It offers robust validation, error handling, and a highly customizable architecture, making it a versatile tool for ecommerce development.

  3. 3
    Article
    Avatar of lnLaravel News·2y

    Sentry and Laravel announce a new partnership

    Sentry and Laravel have announced a new partnership, making Sentry the preferred monitoring and debugging solution for Laravel projects using Forge or Vapor. The integration allows users to easily link their Sentry account, configure and connect sites, and start tracking errors immediately. Sentry also offers new features, such as a feedback widget for user bug reports.

  4. 4
    Article
    Avatar of lnLaravel News·2y

    Asserting a JSON Response Structure in Laravel

    Learn how to assert the structure of a JSON response in Laravel using the assertJsonStructure() method. Validate the presence of specific properties in the response and ensure the expected JSON response shape.