Best of Laravel NewsJanuary 2025

  1. 1
    Article
    Avatar of lnLaravel News·1y

    Television is a Multi-purpose Fuzy Finder TUI

    Television is a high-speed, multi-purpose fuzzy finder TUI that allows users to search through various data sources like files, Git history, and environment variables. It features asynchronous I/O, fuzzy matching, shell integration, and customizable themes. It works across Linux, macOS, and Windows, compatible with all major terminal emulators.

  2. 2
    Article
    Avatar of lnLaravel News·1y

    GGH is a Lightweight CLI to Recall Your SSH Sessions

    GGH is a lightweight CLI tool that helps recall SSH sessions and search your SSH configuration file. Compatible with Unix and Windows systems, it wraps SSH commands for easy session management without replacing SSH. The project is available on GitHub with installers for both operating systems.

  3. 3
    Article
    Avatar of lnLaravel News·1y

    Optimizing Large Data Delivery with Laravel Streaming Responses

    Laravel's streaming responses allow efficient handling of large datasets by sending data incrementally, reducing memory usage and improving response times. This approach is demonstrated with practical examples of streaming large data exports, highlighting memory efficiency and immediate feedback to users.

  4. 4
    Article
    Avatar of lnLaravel News·1y

    VS Code database management extension launches v2

    DevDb, a lightweight VS Code extension for database management, has launched version 2.0. This update includes new features like one-click row deletion, easy column value editing, SQL query explanation using MySQL Visual Explain, and more keyboard shortcuts. It supports SQLite, MySQL/MariaDB, PostgreSQL, and Microsoft SQL Server, making it versatile for various developers.

  5. 5
    Article
    Avatar of lnLaravel News·1y

    Laravel Backup Server v4 Released as Open Source

    Spatie has released Laravel Backup Server v4 as an open-source package. Initially a paid offering, it backs up multiple servers, employs hard link deduplication, allows for file search within backups, automates cleanup of old backups, monitors backup health, and provides notification of issues. It requires Laravel v10 or v11, PHP 8.2, rsync v3 or higher, and the ext3/ext4 filesystem. The package is available on GitHub.

  6. 6
    Article
    Avatar of lnLaravel News·1y

    Interactive Console Commands in Laravel

    Handling missing or incorrect user input in Laravel command-line tools can be addressed using the PromptsForMissingInput trait. This trait turns standard Artisan commands into interactive dialogues, ensuring accurate and user-friendly interface for tasks like maintenance, deployment, or database backups. The post provides practical examples that demonstrate how to implement interactive prompts.