Create Default Authentication in Laravel 6
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.…
Learn by easy steps
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.…
Any WordPress theme can be developed by two ways. You can develop the theme based on any HTML template or the theme can be developed…
Steps: 1.Add code in functions.php file for custom navigation menu register_nav_menus(array('primary'=>__('primary menu', 'saloon'))); 2. Add a primary menu from admin panel 3. Modify the menu…
This tutorial will help you convert any html template to wordpress theme. You can download any free template and follow this tutorial to convert it…
Steps: 1. Create a folder named react-php in htdocs folder to create PHP files to communicate with mysql database. 2. Create another folder api under…
Steps: 1. Create Signup.js with the following code under Signup folder. import React, {Component} from 'react'; import {PostData} from '../../services/PostData'; import {Redirect} from 'react-router-dom'; class…
A very simple project of ReactJS is shown in this tutorial. Here, the authentication system is developed and feed entries are managed based on login…
Steps: 1. Create a simple form using bootstrap or without bootstrap. <!doctype html> <html ng-app> <head> <meta charset="utf-8"> <title>Form validation using Angularjs</title> <script src="angular.js"></script> <link…
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',…