In this article, we will discuss "Laravel Sanctum - Restful API Authentication". Laravel Sanctum provides a simple authentication system for mobile applications, SPA (Single Page Application), and token-based API. We can generate multiple…
How to Upload File to AWS S3 Bucket Laravel
In this article, we will discuss "How to Upload File to AWS S3 Bucket Laravel". It's known as Amazon Simple Storage Service and an object storage service that offers scalability, security, performance, and data availability. We can use AWS…
How to Create Database Backup in Laravel
In this article, we will discuss "How to Create Database Backup in Laravel". In this, we are not going to use any additional package. We will create our artisan command for DB backup and schedule the same for daily or our desired time.…
How to Manage Password Strength – Angular
In this article, we will discuss "How to Manage Password Strength - Angular". There are multiple ways to implement this feature in your Angular application such as applying pattern validation, creating a password strength meter, or using…
How to use trackBy in Angular with Example
In this article, we will discuss "How to use trackBy in Angular". Basically, "trackBy" is used to improve the performance of an angular application. Today, I will try to explain the use of trackBy with an example.
Why do we need trackBy in…
How to Setup AWS Pinpoint (Part 1)
In this series of articles, we will discuss AWS Pinpoint and how to set up the pinpoint project with two-way communication and delivery reporting via AWS Kinesis Data Stream. Today, I will try to explain to you "How to Setup AWS Pinpoint.…
How to Deploy Angular App on Firebase
In this article, we will discuss "How to deploy Angular App on Firebase". Today, you learn deployment an angular app on firebase is simple and easy. You can deploy your application directly from your terminal using simple commands. In case…
How to Send SMS with AWS SNS using Lambda & Python
In this article, we will discuss "How to Send SMS with AWS SNS using Lambda & Python". Amazon Simple Notification Service (AWS SNS) is a fully managed messaging service. You can check here for the pricing-related query, also amazon…
How to Create AWS IAM User with Programmatic Access
In this article, we will discuss "How to create AWS IAM user with programmatic access". Programmatic Access user is required if we want to control AWS services from the command line interface (AWS CLI) or working with the SDK. AWS provides…
Create Time Slots in PHP for Given Time
In this article, we will discuss "Create Time Slots in Php". Check the following code snippet. With this code, we can create time slots for a given interval and time range.
function getTimeSlot($interval, $start_time, $end_time)
{…