How to install third party packages in laravel and enable it?
To install and enable package in laravel
- Open your command prompt.
- Go to your project directory.
- Search packages from git or packagist or through command in your command prompt
- Command for search package "composer search package_name"
- Then see the package name and write command to install project.
- Command to install package "composer require package_name"
- After complete installation read documentation of package to enable package .
Post a Comment