Best of Laravel NewsJune 2025

  1. 1
    Article
    Avatar of lnLaravel News·50w

    Laravel News

    GuacPanel is a Laravel starter kit that combines Vue.js, Inertia.js, and Tailwind CSS to provide a complete foundation for modern web applications. It includes authentication with login tracking, an admin dashboard, smart data tables, file management with drag-and-drop uploads, automated backups, activity logging, role-based permissions, session management, and passwordless login options. The kit offers responsive UI components with dark mode support and comprehensive security features for building production-ready applications.

  2. 2
    Article
    Avatar of lnLaravel News·51w

    Laravel OpenRouter

    A new Laravel package enables easy integration with OpenRouter, a unified API for accessing multiple Large Language Models. The package supports both standard and streaming chat requests, allowing developers to interact with various AI models like Mistral through a single interface. It includes features for real-time streaming responses and can be easily installed via Composer.

  3. 3
    Article
    Avatar of lnLaravel News·48w

    PayHere for Laravel

    Laravel PayHere is a third-party package that integrates PayHere payment gateway (popular in Sri Lanka) into Laravel applications. It supports both onsite and offsite checkout flows, webhook handling, subscription management, and includes a Filament admin panel. The package provides a Billable trait for User models, RESTful API communication, HTML form builders, and Blade components for payment buttons. Installation is done via Composer with additional setup commands for assets and configuration.

  4. 4
    Article
    Avatar of lnLaravel News·48w

    Lightning Fast Schedule Management for Laravel

    Laravel Zap is a flexible schedule management package that provides deep Laravel integration for creating calendar schedules, managing appointments, and handling recurring events. It offers features like availability checking, conflict detection, time slot generation, and supports various scheduling patterns including daily, weekly, and monthly recurrences. The package includes a fluent API for creating schedules, checking availability, finding conflicts, and managing time-based operations with timezone support.

  5. 5
    Article
    Avatar of lnLaravel News·48w

    Defining a Dedicated Query Builder in Laravel 12 With PHP Attributes

    Laravel 12.19 introduces the UseEloquentBuilder PHP attribute as a cleaner way to define custom query builders for Eloquent models. Instead of overriding the newEloquentBuilder() method, developers can now use this attribute to specify a custom builder class. Custom query builders help organize model scopes, reduce model bloat, and provide reusable query methods. The custom builder class must extend Laravel's Builder class and can include methods like wherePublished() for common query patterns.

  6. 6
    Article
    Avatar of lnLaravel News·49w

    Manipulate Image URLs in Laravel with the Image Transform Package

    A new Laravel package called laravel-image-transform-url provides a lightweight solution for manipulating images through URL parameters. Inspired by Cloudflare Images, it allows developers to transform images on-the-fly by appending query parameters for width, quality, format, and other modifications. The package includes built-in performance features like automatic caching, storage of processed images, rate limiting, and CDN integration support. It uses Intervention Image for file manipulations and offers a self-hosted alternative to external image processing services.