Hi, if you are learner and want to add/import component in React JS. so add or import a new component in React.js, you can follow these steps: 1. Create a new component file 2. Define your component 3. Import your component 1. Create a new component file Firstly, you need to create a new JavaScript […]
Tag: Online Education
How to set up Spatie Media Library in Laravel 8
if you are a laravel developer and want to know how to setup Spatie Media Library in Laravel 8. Spatie Media Library is easily manage files and images associated with your models. Step 1: Install the package Step 2: Publish the config file Step 3: Add the Trait to model Step 4: Migrate the database […]
Beginner: create Laravel controllers
Hi, If you are a beginner and want to know how to create laravel controller so this post is very useful for you. in this blog I will explain how to create controller in Laravel. Controller is the main key component in Laravel. it will handle all user request and return appropriate response according to […]
How to create migration and rollback in Laravel 8?
Hi, if you are beginner and want to create database table in laravel 8 so this post is very useful. in laravel we need to create database table through migration. laravel providing migration command that helps we can create/remove database table and its column. Table of contents 1) Migration 2) Rollback 3) add new column […]