Beginners

Building Dynamic Web Applications with Laravel and HTMX Members Public

In recent years, the way we build web applications has undergone a significant transformation. Traditional full-page reloads are giving way to dynamic, single-page applications that provide a smoother and more interactive user experience. Laravel, a popular PHP framework, has kept pace with these changes and offers seamless integration with modern

Ashutosh Kukreti
Laravel

Laravel (10) Pivots: The Secret Sauce for Powerful Relationships You Won't Believe! Members Public

In Laravel, pivot tables serve as intermediary database tables that facilitate many-to-many relationships between two other tables. Acting as connectors, they store additional information about the relationship itself. Pivot tables contain foreign keys referencing the primary keys of the related tables, along with any extra columns necessary for relationship-specific data.

Ashutosh Kukreti
Laravel

All about Controllers in Laravel 10 Members Public

What are Controller?In Laravel, Controllers are PHP classes that handle incoming HTTP requests and manage the application's response to those requests. They act as an intermediary between the Model (data) and the View (UI) in the MVC (Model-View-Controller) pattern. Controllers contain methods that define the actions that can be

Ashutosh Kukreti
Laravel

How to Install Laravel 10 using Laravel Sail Members Public

_____ / ____| | | __ __ _ _ __ ___ ___ ___ ___ | | |_ |/ _` | '_ ` _ \ / _ \/ __/ __| | |__| | (_| | | | | | | __/\__ \__ \ \_____|\__,_|_| |_| |_|\___||___/___/ You can install Laravel using Laravel Sail, a lightweight command-line interface for interacting with Laravel's default Docker development environment. Follow the steps below to install Laravel using Sail: Install Docker on your system. You can download Docker from the official website: https://www.docker.com/products/docker-desktopOpen a terminal

Ashutosh Kukreti
Laravel

How to install Laravel 10 Members Public

Why Laravel?Laravel is a popular open-source PHP web application framework that provides developers with a wide range of tools and features to help them build robust, scalable, and maintainable web applications. It was created by Taylor Otwell in 2011 and has since gained a large and active community of

Ashutosh Kukreti
Laravel

An Introduction to Docker Members Public

What is docker?Docker is an open-source platform that lets you execute complete applications and their surroundings in logical containers. On a single server, we can execute several Docker containers. Applications are segregated from one another. Docker makes use of OS-level virtualisation to run several Docker containers on a single

Ashutosh Kukreti
Docker

Currency Converter using Svelte Members Public

In this article, we learn how to develop a simple currency convertor using Svelte. To start with let's create a project in Svelte npx degit sveltejs/template CurrencyConv cd CurrencyConv yarn install yarn devThe app will run at http://localhost:8080 In the index.html under the public folder, add

Ashutosh Kukreti
Svelte3

How to built modals in Svelte? Members Public

A modal is a web page element displayed in front of the current page. Once it shows, it disables all the other components of the webpage. The user must engage with the modal to return to the parent screen. A modal window is effective to grab the user's attention. The

Ashutosh Kukreti
Svelte3