As you know laravel is one of the most popular php framework for developing web applications. It offers a simple and fast development environment for developers of IT Industry. So, One of good advantage of using Laravel packages is that they allow access to all the features that the framework offers to application. In this post we discuss about the Best Laravel Packages Which You Can Use to Optimize your application in 2020. What is Package? Packages are the way of adding functionality into Laravel applications. Laravel provide packages to provide a specific functionality and you can reused that code anywhere in your laravel application. Laravel provide to create a package and also you can use a another package into application. Best Laravel Packages Following are packages in Laravel that can you use to make application performance faster and speedy. Here I post top Laravel packages which you can use to optimize your application. Spatie In Laravel applica
In this post we will learn how to "Add and Remove Input Fields Dynamically with Jquery Laravel 5.8". Today, we add and remove input fields dynamically using jquery and save to the database in laravel 5.8 Project. Dynamically add input fields are usefull when you add or clone same input fields to enter the different data into form. It is good option when you need to get multiple values of same field. So, let's start: Watch Now Laravel 7 new Feature - Components Step 1: Install Laravel 5.8 Project Type the following command: composer create-project --prefer-dist laravel/laravel dynamic-fields "5.8.*" Step 2: Database Configuration In this step we configure the database. We put the database details like database name, username and password to store the data. open .env file into laravel project folder. DB_CONNECTION =mysql DB_HOST = 127.0.0.1 DB_PORT = 3306 DB_DATABASE =jayvitech (Your database name) DB_USERNAME =root (Your user name) DB_PASS