I am explaing you how to add Bootstrap to a core PHP website. it involves including the necessary Bootstrap files in project and Bootstrap classes to style your HTML elements. Here’s some small step-by-step guide: 1. Download Bootstrap library Firstly we need to download Bootstrap from the official Bootstrap website (https://getbootstrap.com/). we can choose to […]
Author: Azhar Shaikh
Laravel : Laravel’s important commands
Laravel is a popular PHP framework used for developing web application. Laravel provides a many commands to help you with various development tasks. Here are some of the generic commonly used Laravel commands: 1. General Commands 2. Migration Commands 3. Controller and Resource Commands 4. Route and View Commands 5. Database and Seeder Commands 6. […]
Laravel 8 : step by step CRUD operation in laravel 8
Today I am explaining you step by step CRUD operation in laravel 8. In this guide, you can learn how to perform CRUD operation in Laravel 8. CRUD means four basic functionality like Create, Read, Update, Delete. It is the operations perform in the database. I am going to show you step by step through […]
How to create a new React JS App
Creating a new React JS app is a simple process that require very easy steps. here I am explaining you how to step by step create a new React JS app: here “my-app” with the name of your app you can choose as per your requirement. I have used “my-app” to “agorainfo”. This will create […]
how to secure your Laravel website
Securing is essential things for any website. securing things we need to protect it against data breaches,malicious attacks and other security threats. here I will explaing some best common practices for securing your Laravel website: 1. Strong Passwords we need to use strong and complex passwords for your database, server, and other areas of your […]
how to apply/add datatable in laravel 8
Datatable is a powerful jQuery plugin. it is basically used to display data in a table format with various features like searching, sorting, pagination etc. In Laravel. it also provide some other features like CSV, Excel format sheet etc. if you want to Install the DataTables you need to follow below steps – 1. Install […]
Why Developers Prefer JavaScript Over PHP
It’s important to note that there isn’t necessarily a one-size-fits-all answer to this question, as different developers may have different preferences based on their own experiences and skill sets. Both languages have their strengths and weaknesses and are commonly used in different contexts. here are some potential reasons why some developers might prefer JavaScript over […]
how to become a good software developer
Becoming a good software developer requires discipline, focus, and willing to continuously improve your skills. Here are some tips that can help you achieve this: 1. Eliminate distractions you need to Identify the things that distract you and eliminate them. This could include turning off notifications on your phone or computer, closing unnecessary browser tabs, […]
how to add/import new component in React JS
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 […]
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 […]