Laravel Image – Image processing

Laravel Image is a package that provides an intuitive interface for image manipulation and processing within your Laravel applications. Built on top of the popular Intervention Image library, it allows you to easily resize, crop, and perform various transformations on images, making it ideal for tasks such as uploading and handling user-generated images.   Installation …

Laravel Image – Image processing Read More »

Laravel Fast Excel – Speed up Excel exports

Laravel Fast Excel is a package that significantly enhances the speed and performance of Excel file exports in Laravel applications. It provides a simple and efficient way to generate Excel files, leveraging the underlying PhpSpreadsheet library while focusing on speed and low memory usage.   Installation You can install the Laravel Fast Excel package using …

Laravel Fast Excel – Speed up Excel exports Read More »

Laravel Stubs – Customize default stubs in Laravel

Laravel Stubs is a package that allows you to customize the default stub files used by Laravel when generating various components, such as controllers, models, migrations, and more. By customizing these stubs, you can tailor the generated code to fit your application’s specific needs and standards.   Installation To install the package, you can use …

Laravel Stubs – Customize default stubs in Laravel Read More »

Laravel Permission Manager – Manage permissions easily

Laravel Permission Manager is a package that simplifies role and permission management in your Laravel application. It allows you to define roles and permissions, assign permissions to roles, and manage user access throughout your application seamlessly.   Installation To install the package, you can use Composer:

  Configuration After installation, publish the configuration file …

Laravel Permission Manager – Manage permissions easily Read More »

Spatie Laravel Http Logger – Log HTTP requests

Spatie Laravel Http Logger is a package that allows you to log HTTP requests and responses in your Laravel application. This can be particularly useful for debugging and monitoring purposes, as it helps you keep track of all incoming and outgoing HTTP requests.   Installation To install the package, you can use Composer:

  …

Spatie Laravel Http Logger – Log HTTP requests Read More »

Laravel Notifications – Send notifications through multiple channels

Laravel Notifications provide a way to send notifications to users through multiple channels such as email, SMS (via services like Twilio), Slack, database, and more. The notification system is flexible and allows you to use different channels for different kinds of notifications, depending on your application’s needs.   Creating a Notification To create a new …

Laravel Notifications – Send notifications through multiple channels Read More »

Laravel CORS – Cross-Origin Resource Sharing (CORS) support

Laravel CORS (Cross-Origin Resource Sharing) provides support for handling requests from different domains. Laravel uses the package fruitcake/laravel-cors to allow the configuration of CORS headers. CORS is essential for enabling secure communication between web applications hosted on different domains, particularly in scenarios like API access or loading resources from external sources.   Installation of Laravel …

Laravel CORS – Cross-Origin Resource Sharing (CORS) support Read More »

Laravel Auth – Custom authentication guards

In Laravel, authentication guards define how users are authenticated for each request. By default, Laravel ships with a web guard (for sessions and cookies) and an api guard (for token-based authentication). However, you can create custom authentication guards for specific authentication needs, such as using different user types (e.g., admins and regular users) or custom …

Laravel Auth – Custom authentication guards Read More »

Laravel Deployer – Deployment automation tool

Laravel Deployer is a deployment automation tool designed to simplify and automate the deployment of Laravel applications. It allows you to deploy code to your server seamlessly and efficiently, with support for features like atomic deployments, parallel execution, and rollbacks.   Key Features: Zero-Downtime Deployments: Ensure your application stays online while deploying new code. Automated …

Laravel Deployer – Deployment automation tool Read More »

Laravel Trustup Model History – Store model change history

Laravel Trustup Model History is a package designed to store and track changes made to Laravel models. It keeps a detailed history of modifications, helping developers audit changes, debug issues, or monitor how data evolves over time. This package allows you to track which attributes were changed, who made the changes, and when they occurred. …

Laravel Trustup Model History – Store model change history Read More »

Scroll to Top