How to install Laravel 9 on Ubuntu
Laravel is a very popular PHP framework to develop different types of web applications. The Linux users require to install some packages before creating a…
Learn by easy steps
Laravel is a very popular PHP framework to develop different types of web applications. The Linux users require to install some packages before creating a…
This tutorial shows how you can convert multiple pages of HTML template into Laravel by adding other methods in the controller. To start this tutorial…
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…
Laravel 7 is released on 3rd March 2020. Many new features are added in this new version, such as, improved routing cache speed, improved blade…
Steps: 1.Create a new Laravel Project. laravel new newproject 2. Go to the project folder and add laravel default authentication in your project cd newproject 3.…
Steps: 1. Create a Controller php artisan make:controller TestController 2. Copy the bootstrap folder in laravel public directory 3. Create a master view file for…
Steps: 1.Create a migration file for admin user. php artisan make:migration add_is_admin_to_user_table --table=users 2. Add is_admin field to user table public function up() { Schema::table('users',…
Create one-to-one relationship in the database using Laravel Steps: 1. Create a migration file for adding a new table profile php artisan make:migration create_table_profile 2.…
Applying one-to-many relationship in the database using Laravel Steps 1. Create a migration file for adding a new table students php artisan make:migration create_table_students 2.…