CRUD Operation using PHP, MySQL and Bootstrap
Steps:1. Create a database named php_crud and a table named `employee_basics` by running following SQL, CREATE TABLE `employee_basics` (`id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100)…
Learn by easy steps
Steps:1. Create a database named php_crud and a table named `employee_basics` by running following SQL, CREATE TABLE `employee_basics` (`id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100)…
Steps: 1. Create a new Laravel Project 2. Install html package using Laravel composer require laravelcollective/html 3. Change app.php file Collective\Html\HtmlServiceProvider::class, 'Form' => Collective\Html\FormFacade::class, 'Html'…