Here is the list of 10 packages from which you can secure your laravel application with ease. all you have to do is just browse to your folder via command panel an and install these packages using composer

1 – laravel-security

This packages integrates Symfony Security Core in Laravel, mainly to use the Voters to check acces to roles/objects.

Install

Add this package to your composer.json and run composer update

"barryvdh/laravel-security": "0.2.x@dev"

After updating, add the ServiceProvider to ServiceProvider array in config/app.php

'Barryvdh\Security\SecurityServiceProvider'

You can optionally add the Facade as well, to provide faster access to the Security component.

'Security' => 'Barryvdh\Security\Facade',

Links