File Upload Validation in Jquery [Simple Method]

File Upload Validation in Jquery

In this blog, I shared a Jquery file upload validation where the user cannot upload a file of size more than 300kb. If the user tries to upload a file of more than 300kb, the submit button will be disabled. And if the file uploads less than 300kb then the submit button will be activated. … Read more

How to Make Moving Particles in Javascript

how to make particles in javascript

Hello developers, In this post I shared code for Moving Particles with Javascript. Often when you visit a website, these moving particles attract you. This can be done easily with particle JS. Index.html Don’t forget to add particles.js CDN style.css script.js I hope it will help you

Make A Scientific Calculator with Javascript, HTML, CSS

Scientific Calculator

Welcome Developers today in this blog post we will be building an math scientific calculator with HTML CSS and javascript. All the full source code of the application is shown below. So let’s started. First, you need to make a file and paste the following code. index.html style.css script.js

How To Share Postman API Collection?

Hello, developers In this post we will learn how to share the Postman API collection. By sharing API collection, another developer can easily import the collection into his postman and get all the API with parameters and values. it’s even easier. First of all click on the right side 3 dots of the API folder … Read more

[Solved] Error: Apache Shutdown Unexpectedly

Error Apache Shutdown Unexpectedly

Friends, this error often comes while using XAMPP. So that we are not able to open XAMPP and the database is not accessible. In this post, I am going to share a simple method that always helps me and I hope that will help you. Step 1: Rename mysql/data First, you have to rename the … Read more

Disable and Enable a Button in Javascript

Here we are going to disable a button with Javascript. Disable a button means that the button exists on the HTML page but does not perform any task. There are many methods to disable a button, So let start and learn some best methods. Method 1 : Toggle Disabled and Enable a Button In this … Read more

[Solved] Call to undefined method App\Models\User::createToken()

Normally “Call to undefined method App\Models\User::createToken()” error comes during working on Passport API authentication. So in this blog post, we solve this issue in simple two-line. just flow me. App\Models\User.php Add method createToken is in HasApiTokens trait, you should use it In your User Model. At the above code, I added two line and I … Read more