Category Archives: frontend

Level Up Your React Apps with Next.js InnovationM

Level Up Your React Apps with Next.js

What is Next.js? Next.js is a powerful React framework that extends upon React by offering features like static site generation (SSG), server-side rendering (SSR), and automatic code-splitting. This translates to lightning-fast performance, improved SEO, and a delightful developer experience. Why Next.js? Blazing-Fast Performance: Next.js pre-renders pages at build time, minimizing the amount of work required Continue Reading »

Generate Laravel 11 Tailwind CRUD Operation InnovationM

Generate Laravel 11 Tailwind CRUD Operation

An updated Laravel CRUD Generator version of  ibex/crud-generator now generates CRUD in Tailwind CSS in the blade with the blank Laravel installation. 1- Install Laravel composer create-project laravel/laravel laravel-11-crud 2- Create Migration php artisan make:model Posts –migration For example posts table has the following columns in migration below. <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration {     public function up(): void     { Continue Reading »