Open in app

Sign In

Write

Sign In

Raviya Technical
Raviya Technical

179 Followers

Home

Lists

About

22 hours ago

Laravel CRUD | Laravel MongoDB CRUD Tutorial Example

Step 1 : create db of ‘mongodb’ mongo > use mongodb Step 2: Setup Env variable (.env) & Config File .env MONGO_DB_HOST=127.0.0.1 MONGO_DB_PORT=27017 MONGO_DB_DATABASE=mongodb MONGO_DB_USERNAME= MONGO_DB_PASSWORD= config/database.php <?php return [ .... 'connections' => [ …

Laravel

4 min read

Laravel

4 min read


Published in

Flutter Framework

·Jul 23

Flutter State Management: MVC Pattern Example for Building a Counter App

Create Model of models/counter_model.dart class CounterModel { int _count = 0; int get count => _count; void increment() { _count++; } void decrement() { _count--; } } Create Controller of controllers/counter_controller.dart import '../models/counter_model.dart'; class CounterController { CounterModel model = CounterModel(); int get count => model.count; void increment() {…

Flutter

2 min read

Flutter State Management: MVC Pattern Example for Building a Counter App
Flutter State Management: MVC Pattern Example for Building a Counter App
Flutter

2 min read


Jul 22

WordPress | Beginner-friendly WordPress plugin development using React JS

Setup of an npm project using cmd npm init Install the WordPress official package of scripts. npm install @wordpress/scripts --save-dev Change in package json { "name": "tools", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "build": "wp-scripts build", "start"…

WordPress

3 min read

WordPress | Beginner-friendly WordPress plugin development using React JS
WordPress | Beginner-friendly WordPress plugin development using React JS
WordPress

3 min read


Published in

Flutter Framework

·Jul 10

How to Implement a Flutter Paginated Data Table with REST API: Complete Guide

import 'dart:developer'; import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'dart:convert'; import '../../config/config.dart'; class DataModel { final int id; final String name; final String email; DataModel({ required this.id, required this.name, required this.email, }); factory DataModel.fromJson(Map<String, dynamic> json) {…

Flutter

2 min read

How to Implement a Flutter Paginated Data Table with REST API: Complete Guide
How to Implement a Flutter Paginated Data Table with REST API: Complete Guide
Flutter

2 min read


Published in

AdonisJS

·Jul 1

Adonis JS | How To Create a Project

Introduction: Adonis JS is a robust Node.js web application framework that enables developers to create efficient and scalable applications. In this comprehensive guide, we will walk you through the process of creating a project in Adonis JS. …

Nodejs

2 min read

Nodejs

2 min read


Apr 19

Laravel Livewire | How to Build a CRUD Application with Pagination (Tall Stack Example)

Step 1: Install Laravel composer create-project laravel/laravel laravel Step 2: Create Dummy Records using Tinker Factory php artisan tinker User::factory()->count(100)->create() Step 3: Install Tall Stack Laravel TALL Stack Authentication: Simplifying User Management for Web Applications To create a CRUD operation in a Laravel TALL stack (Tailwind CSS, Alpine.js, Laravel, and Livewire), you can follow…raviyatechnical.medium.com

Laravel

4 min read

Laravel

4 min read


Apr 19

Laravel TALL Stack Authentication: Simplifying User Management for Web Applications

To create a CRUD operation in a Laravel TALL stack (Tailwind CSS, Alpine.js, Laravel, and Livewire), you can follow these steps: Create a new Laravel project using the following command: laravel new myapp Install the TALL stack dependencies by running the following command: composer require livewire/livewire laravel-frontend-presets/tall --dev Generate the…

Laravel

1 min read

Laravel

1 min read


Apr 9

Laravel API Secure: A Comprehensive Guide to Securing Your Laravel API

Create an environment variable for your API key by adding the following line to your .env file: API_KEY=your_api_key_here In your config/services.php file, add a new entry for your API key: 'custom_api' => [ 'key' => env('API_KEY'), ], Create a new middleware using the php artisan make:middleware command: php artisan make:middleware…

Laravel

1 min read

Laravel

1 min read


Apr 9

Ultimate Guide to Optimizing Laravel API Performance

Use Eager Loading: When fetching data from the database, use eager loading to load all the necessary relationships with a single query, instead of making multiple queries for each relationship. This will significantly reduce the number of database queries and improve the performance of your API. Cache Results: Cache the…

Laravel

2 min read

Laravel

2 min read


Nov 6, 2022

Laravel with Packages | Laravel Yajra Datatables Date Sorting Example

In this post, we will learn the laravel datatables date sorting example. it’s a simple example of laravel datatables sorted by date. I’m going to show you about yajra datatables date sorting example laravel. Here you will learn laravel datatables sorting with the created_at example. …

Laravel With Packages

3 min read

Laravel with Packages | Laravel Yajra Datatables Date Sorting Example
Laravel with Packages | Laravel Yajra Datatables Date Sorting Example
Laravel With Packages

3 min read

Raviya Technical

Raviya Technical

179 Followers

raviyatechnical.blogspot.com

Following
  • Matthew Encina

    Matthew Encina

  • Divyanshu

    Divyanshu

  • Taylor Otwell

    Taylor Otwell

  • Eric L. Barnes

    Eric L. Barnes

  • Weyler Antonio Uicab Pat

    Weyler Antonio Uicab Pat

See all (10)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams