This post covers how to use Moment.js in Angular. We’ll go over why Moment.js is useful, how to install it, and how to use it in Angular to manipulate dates and times. Moment.js is a powerful and flexible library for…

How to Rollback Migrations in laravel ?
In our recent article I showed you about creating migration in laravel and sometimes after creating migration we want to rollback migrations so in this article i will show you to rollback migration in laravel. Laravel artisan have multiple options…

How to rollback a specific migration in laravel ?
In our recent article i wrote about creating migration in laravel and sometimes after creating migration we want to rollback a specif migration so in this article i will show you to rollback a specific migration in laravel. Laravel artisan…

Password and confirm password validation in Laravel
There is many ways to check the password and confirm password validation in laravel. we can match password using the equals to operator but in that case we need to work as core PHP. So In laravel we have Validation…

Simple way to call API in flutter using http package
Every client side application require connection to server to share the data and get most updated data from server. In the same way flutter also require to call the APIs’ and get data from server and also store the data…
Quickly add Google translate widget button to any website
Google translator is most popular translation engine to translate any word into any language. Translation of complete website can be a hectic task to developer but using the Google translation we can easily translate complete website into any language. By…

How to use database transaction in laravel eloquent with example ?
Database Laravel Transaction in laravel eloquent are used to execute multiple or single database operations which maintainer ACID(atomicity, consistency, isolation, and durability) property of transactions. In laravel we can archive the database transaction by DB facade. Laravel DB facade provides…

How to make database connection in Laravel 8 ?
Laravel comes with first party support for several database drivers. Laravel gives much better flexibility in terms of using the RDBMS based databases. Laravel supports MySQL, PostgreSQL, SQLite and SQL Server by default but if you want to make connection…
Laravel view – A complete guide for beginner
Laravel view is the presentation layer of laravel. Views are used to show the html and keep separate controller login from view logic. We can created nested views, dynamic views to show dynamic data, include another view in a view.…

Submit form using jQuery in Laravel
jQuery is most popular library to handle the client side events like form submit, click, change etc. In this article we will learn to submit the form using jQuery Ajax method. Ajax is mostly used when we do not want…