Laravel Queue Debouncer package allows any queue job or chain in your Laravel application to be debounced, meaning that no matter how many times it’s dispatched within the specified timeout window, it will only run once.For example, imagine you dispatch a job to rebuild a cache every time a record is updated, but the job is resource intensive....
29 November, 2022
Automatically Detect & Set App Locale with Laravel Localizer
Programing Coderfunda
November 29, 2022
Laravel, laravel-packages, php
No comments
Laravel Localizer is an awesome package that allows you to automatically detect and set an app locale that matches your visitor's preference.Define your supported locales and match your visitor's preferenceUses the most common locale detectors by defaultUses the most common locale stores by defaultEasily create and add your own detectors...
Create Collection of dates & times with Laravel Hours Helper
Programing Coderfunda
November 29, 2022
Laravel, laravel-packages, php
No comments
Laravel Hours Helper is an amazing package that helps you to create an Illuminate\Support\Collection of dates and times with a specific interval for a specific period. This helper could be useful in generating dropdown selections for a calendar meeting invite or scheduling the duration of an event. This helper also allows you to...
Laravel Package to Help with Loading Files into MySQL Tables
Programing Coderfunda
November 29, 2022
Laravel, laravel-packages, php
No comments
Laravel Load File is a package to help with loading files into MySQL tables. This uses MySQL's LOAD DATA statement to load text files quickly into your database. This is usually 20 times faster than using INSERT statements according to: https://dev.mysql.com/doc/refman/8.0/en/insert-optimization.htmlOptionsThis library currently can...
Use Flags For Countries & Languages in Laravel Blade Views
Programing Coderfunda
November 29, 2022
Laravel, laravel-packages, php
No comments
Blade Flags is a package to efficiently use TwEmoji Countries & Languages Flags in your Laravel Blade views. You can use it easily to display countries & languages flags in your Laravel Blade views. For a complete list of available icons see the SVG directory or preview all the available flags, check the...
Optimize & store images in multiple sizes easily in Laravel
Programing Coderfunda
November 29, 2022
Laravel, laravel-packages, php
No comments
Laravel Image Handler is an awesome package that can be used to optimize and store images in multiple sizes easily.Installationcomposer require codepane/laravel-image-handlerphp artisan vendor:publish --provider="codepane\LaravelImageHandler\ImageHandlerServiceProvider"UsageStore Imageuse ImageHandler;public function store()
{// its takes...