Posts for Deven

Software Developer
Deven
Deven wrote

Laravel Eloquent relationships explained

Eloquent ORM is one of the most exciting and powerful built-in features in Laravel. Before we start we’ve to understand, what ORM means. ORM means object-relational mapper. It handles database operations by representing data as objects. Database records or as we better know them tables are often related to each other. Eloquent maintains these relationships […]

March 11, 2023 in Laravel & Tutorials
Deven
Deven wrote

How to use whereIn() method in Laravel

We manage data in a relational database management system through different SQL queries. The whereIn is also a SQL query. In this tutorial, you are going to learn how to use SQL whereIn query in Laravel. Let’s learn through examples. Suppose we have a customers table in our database. There are five columns in the […]

February 24, 2023 in Laravel & Tutorials
Deven
Deven wrote

Build a CRUD API with Remix, Prisma, and Postgres

In this tutorial, we will learn how to build a CRUD API with Remix, Prisma, Docker, and Postgres, where we will talk about how we can use Remix, Prisma, and Postgres together to create powerful web applications. The Project – Todo API This will be a Todo App API where the user can add a new Todo , update, […]

February 19, 2023 in Tutorials
Deven
Deven wrote

Build a server monitoring app with Vue and Node

In this tutorial, we will learn how to Build a server monitoring app with Vue and node, where we will talk about how we can use Vue.js, Node.js, Express.js, and, Socket.io together to create a powerful web application. Steps to build a server monitoring app with Vue and node Step 1 – Set up the backend […]

February 19, 2023 in Dev Bytes & Node & Tutorials & Vue
Deven
Deven wrote

Build React Login & Sign Up UI with tailwind & Jwt Auth

In this tutorial, We are going to learn how to create a modern Login and Sign Up User Interface using React.js and Tailwind CSS. We will cover the basics of setting up a React project, using Tailwind to style the page, and configuring the signup and sign-in forms using Jwt authentication. The Tailwind CSS framework will […]

February 15, 2023 in React & Tutorials
Deven
Deven wrote

How to use the updateOrCreate() method in Laravel

Generally, in Laravel, we use the create() method to create new data and the update() method to update our data into the database. But there is a way to use both methods at a time like when it needs to create new data it uses the create() method and to update the data it uses […]

February 14, 2023 in Laravel & Tutorials
Deven
Deven wrote

How to use groupBy() method in Laravel

The groupBy() method in Laravel returns the query results by grouping the data of a database table. Suppose we have multiple data of the same type or name in our database. We can get those specific types of data without any duplicate value by using the groupBy() method. In this tutorial, you are going to […]

February 11, 2023 in Laravel & Tutorials
Deven
Deven wrote

Pagination in Laravel 10 explained with examples

Laravel is one of the easiest and most efficient PHP frameworks. It follows MVC or model, view, and controller design pattern. It provides many exciting features for web development. Pagination is one of them. Laravel’s paginator uses Query builder and Eloquent ORM that provides suitable easy-to-use pagination. In this tutorial, you are going to learn […]

February 9, 2023 in Laravel & Tutorials
Deven
Deven wrote

A comprehensive Laravel 10 Cron Jobs Scheduling with example

Imagine that you have a subscription-based application built with Laravel, and you want to send daily emails to all users, I don’t think you really like doing it manually. Checking for new users to copy the email addresses and send emails to them it’s boring and not productive, right? sure,  And here comes the power […]

February 8, 2023 in Laravel & Tutorials
Deven
Deven wrote

Laravel eloquent polymorphic relationships explained

Eloquent ORM is one of the most exciting and powerful built-in features in Laravel. Before we start we’ve to understand, what ORM means. ORM means object-relational mapper. It handles database operations by representing data as objects. Database records or as we better know their tables are often related to each other. Eloquent maintains these relationships […]

January 26, 2023 in Laravel & Tutorials
Deven
Deven wrote

How to Build an Animated Slide Toggle in React Native

A key part of building applications with great user experience is the ability to synchronize the flow of the application with activities performed at any point in time.  Creating a smooth connection in the application gives a meaningful user experience that allows for ease of interaction. For this purpose, representing an action well in modern […]

October 30, 2022 in React Native & Tutorials