How to convert html template into Laravel 7 project – Part 1
It is helpful for the new Laravel users to know the way of converting any static HTML template into a Laravel project and convert it…
Learn by easy steps
It is helpful for the new Laravel users to know the way of converting any static HTML template into a Laravel project and convert it…
Simple Laravel 7 CRUD using modal is shown in the previous tutorial. DataTables is a popular Jquery plugin to work with the large list of…
Steps: 1. Create a MySQL database 2. Open the .env file and set the database connection 3. Run the following command to set project namespace…
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'…
Steps: 1. Select any table with data from the database that you want use for printing. Here students table is selected from the database. 2. Create a…