Laravel Database Migration: নতুন কলাম যোগ ও পরিবর্তন করার সহজ গাইড (Beginner Friendly)Jan 21, 2026·2 min read
🔧 Laravel Tinker দিয়ে লোকাল প্রজেক্টে পাসওয়ার্ড রিসেট করার সহজ গাইডঅনেক সময় লোকাল Laravel প্রজেক্টে কাজ করতে গিয়ে আমরা লগইন পাসওয়ার্ড ভুলে যাই। কিন্তু চিন্তার কিছু নেই — Laravel Tinker ব্যবহার করে খুব সহজেই পাসওয়ার্ড রিসেট করা যায়। এই আর্টিকেলে ধাপে ধাপে দেখানো হলো, একদম নতুনরাও যেন বুঝতে পারে। 🖥️ Tinker কী? ...Jan 29, 2026·2 min read
🚀 বস, VPS এ ফাইল আপলোড করতে গিয়ে মাথা খারাপ! ইমেজ চলে, PDF কেন Fail? (Solving a Real Dev Headache)Dec 1, 2025·2 min read
PHP Debugging: Common Errors and How I Fixed ThemLearn how I fixed common PHP errors like "Cannot declare class", PDO placeholder issues, and undefined variables with practical examples.Sep 16, 2025·3 min read
🚀 PHP Interfaces vs Abstract Classes: Explained Simply for BeginnersIf you’re learning PHP Object-Oriented Programming (OOP), you’ll quickly come across interfaces and abstract classes. At first, they might sound confusing — but don’t worry! In this guide, we’ll break them down in plain English, with easy examples, s...Sep 6, 2025·5 min read
learn php traits, inheritance, instanceWhat is a Trait in PHP? In modern object-oriented programming (OOP), code reuse is a key principle, especially in large applications. PHP, however, does not support multiple inheritance—a class can only extend a single parent class. But in real-world...Sep 4, 2025·3 min read
laravel set upHow to Install a Laravel Project (Step-by-Step Guide) Laravel is one of the most popular PHP frameworks for building modern web applications. In this guide, we’ll walk through the process of installing a fresh Laravel project, from setting up the env...Sep 4, 2025·2 min read
A History of PHP: From Humble Beginnings to Web Development PowerhousePHP, a widely used scripting language for web development, boasts a rich history filled with innovation and adaptation. Let's delve into its journey, from its creation in the mid-90s to its current status as a dominant force in the web development la...Jun 1, 2024·3 min read
Make todo List with Laravel part-1Today we will know how to create a todo list in Laravel First of all We need to setup the Laravel enviroment so that we can create a to-do list, for that we will install XAMPP on our computer, install a composer, then install Laravel, we will also ne...Aug 15, 2023·1 min read