// CRUD OPERATIONS 🧩 // C = Create | R = Read | U = Update | D = Delete // Creating server using Express ⚙️ import express from 'express'; const app = express(); // express app instance // C = Create => POST method (e.g., posting pic on Instagram...
Create Data Tambahkan route untuk create and store di routes/web.php Route::get('/pasien', [PasienController::class, 'index'])->name('pasien.index'); Route::get('/pasien/tambah_pasien', [PasienController::class, 'create'])->name('pasien.create'); R...
Introduction As Laravel developers, we frequently encounter these recurring development tasks: Creating models, controllers, services, and request classes Setting up routing Writing validation rules Defining model relationships Importing test da...
In this article, I’ve explored how to build a fully dynamic CRUD (📝 Create, 📖 Read, ✏️ Update, ❌ Delete) system in Laravel using AJAX ⚡ and the powerful jQuery DataTables 📊 plugin. By combining Laravel's backend robustness 🛠️ with the responsiven...
Welcome to Day 4 of my SQL Tutorial Series! 👋 So far, we’ve learned what a database is, types of databases, and the role of a DBMS. Now, it’s time to talk about SQL itself, the operations it enables, and how data is organized. Let’s break it dow...
Date: 2021-01-05 This tutorial demonstrates setting up a Spring Boot application to interact with a Couchbase database using Spring Data. It covers setting up Couchbase (using Docker), creating a bucket and user, and building a Spring Boot applicati...
Date: 2021-01-04 This tutorial demonstrates creating a Spring Boot CRUD application using a local DynamoDB instance via Docker. It covers setting up DynamoDB locally using docker-compose, configuring Spring Boot with necessary dependencies (includin...
Date: 2017-08-23 This tutorial demonstrates performing Create, Read, Update, and Delete (CRUD) operations in a Java application using Hibernate annotations. It guides you through setting up a Maven project, configuring Hibernate with MySQL, creating...
Date: 2020-02-12 This tutorial demonstrates how to perform CRUD (Create, Read, Update, Delete) operations in a Firebase database using Angular. It guides you through setting up a Firebase project, installing necessary dependencies, creating Angular ...
Date: 2020-09-17 This tutorial demonstrates basic CRUD (Create, Read, Update, Delete) operations on AWS DynamoDB using Python's boto3 library. It guides users through setting up AWS credentials, creating a DynamoDB table, and then provides Python sc...