Laravel packages for fresh application

Laravel packages for fresh application

203

Hello everyone,

In this article i will introduce you to most wanted (needed) packages in laravel after a fresh install.

Note: none of these packages are required to be installed in your app but they could be big help to you to writing new application (make it more easy for you).

Let's begin:

First package is Intervention Image

This package will help you with managing images in your app such as Upload,Resize,Delete etc.

To install this package follow steps below:

1- add to your CMD

composer require intervention/image
PHP

2- Add to Config/App.php Providers

InterventionImageImageServiceProvider::class
PHP

3- Add to Config/App.php Aliases

'Image' => InterventionImageFacadesImage::class
PHP

 

Seond package is laravelcollective

This package helps you with forms and html codes

To install this package follow steps below:

1- add to your CMD

composer require "laravelcollective/html":"^5.4.0"
PHP

2- Add to Config/App.php Providers

CollectiveHtmlHtmlServiceProvider::class,
PHP

3- Add to Config/App.php Aliases

'Form' => CollectiveHtmlFormFacade::class,
'Html' => CollectiveHtmlHtmlFacade::class,
PHP

 

Third package is Google Captcha

This package helps you stay away from spammers and bots. (Made by CV. IRANDO)

To install this package follow steps below:

1- add to your CMD

composer require irando/invisible-recaptcha
PHP

2- Add to Config/App.php Providers

irando\InvisibleReCaptcha\InvisibleReCaptchaServiceProvider::class,
PHP

 

Fourth package is Carbon

This package will help you with timestamps.

To install this package follow steps below:

1- add to your CMD

composer require nesbot/carbon
PHP

 

- Last updated 3 years ago

Ads

Be the first to leave a comment.

You must login to leave a comment