Here, we provide you 5 Best Laravel Packages known for their powerful functionalities that can help you extend your project’s features.
Laravel framework provides a lot of useful functionality out of the box. Due to specific requirements in a project, we can take advantage of the already built package instead of building a new package from fresh.
We recommend these packages because they have had been used by us in many laravel applications.
Let’s take a look at details.
We personally recommend this package to everyone. Click here to install the package.
Once it’s installed, the debug bar will be enabled at bottom of the page. The debug bar includes several tabs like Messages, Timeline, Views, Route, Queries, etc as shown n the image below.
Application optimization & debugging processes are handled very easily with this package. Below are a few features of this package.
Check out this wonderful package here: barryvdh/laravel-debugbar
Spatie provides many Laravel & PHP packages. Laravel framework provides permission management out the box since version 5.1.11. Laravel core has the following features to manage permission.
But sometimes, it’s not easy to handle many permissions and roles with the core functionality. This package is developed based on Laravel’s authorization feature. Not only it is very well documented and maintained but also has a good depth. We can use functions of this package with blade directive, middleware, and multiple guards, etc
Link: spatie/laravel-permission
It’s not easy to create tree structure relations using laravel core functions. You have to handle so many things if you want to do so.
This package works on Nested Set Model algorithm. The node traversing and manipulation process are straightforward.
It manages all the relations into a single table. So no need to worry about multiple tables creation and its joining. We can also create a custom field(s) on the same relation table if needed.
The only downside is Nested Set Model algorithm takes time to manage the left and right index during insert/update operations in a table. Therefore, it is not advisable if your tree structure relation has higher update/insert operations.
Read more about this here: lazychaser/laravel-nestedset
One more nice package provided by spatie team is laravel-backup. It allows application backup and database backup.
To take a full backup(DB+files), use this artisan command:
php artisan backup:run
If you only need to backup the database, use below command:
php artisan backup:run --only-db
Likewise, to take files backup, use the below command:
php artisan backup:run --only-files
To execute artisan commands from your controller, use the “call” method of Artisan facades as shown below:
Artisan::call('backup:run');
Artisan::call('backup:run', ['--only-files' => true]);
In addition, this package also provides several notifications channels to be notified, and fire events for which you can create listeners.
Link: spatie/laravel-backup
Do you want to manipulate & handling of images in your application? If yes, you can use the PHP “Intervention/image” library. It comes with two drivers
The library provides separate installation for Laravel and PHP.
It provides many useful functions like crop, resize, rotate, merging, etc. We can also read image EXIF information easily with this library.
Checkout this package here: Intervention/image
Feel free to share any nice packages. We would love to explore.
Hope this was helpful.
checkout our how to post tweets & images on a twitter account with PHP.
Thanks For Posting About the Laravel Programming language packages and applications. Its very helpful and useful for Laravel Programmers and researchers who wants know more about Laravel.
Thank you LaraLIbs!
Happy!!! pretty useful packages
Thanks a lot Fab!