Skip to main content

Command Palette

Search for a command to run...

Make todo List with Laravel part-1

Updated
1 min read
Make todo List with Laravel part-1
B

"Passionate web developer specializing in PHP, Laravel, and Filament, dedicated to building elegant, efficient, and scalable web solutions. Experienced in deploying projects and exploring new technologies to bring ideas to life."

Today 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 need a code editor, our computer is now ready to create a project in Laravel, first we will create a project, then open the project with the code editor, to create a to-do list, First we will go to resources, from there we will go to views, then we will edit the welcome.blade.php file there Then I will create the model, I will give the command to create the model along with the controller and migration and create it together. Example - php artisan make:model Todo -mc

  • Note: (When creating the model, the t of todo will always be capitalized, and -mc means migration and controller will also be created)

Then create database and connect with .env DB_DATABASE = The name of the database Then create column in migration.

More from this blog

🔧 Laravel Tinker দিয়ে লোকাল প্রজেক্টে পাসওয়ার্ড রিসেট করার সহজ গাইড

অনেক সময় লোকাল Laravel প্রজেক্টে কাজ করতে গিয়ে আমরা লগইন পাসওয়ার্ড ভুলে যাই। কিন্তু চিন্তার কিছু নেই — Laravel Tinker ব্যবহার করে খুব সহজেই পাসওয়ার্ড রিসেট করা যায়। এই আর্টিকেলে ধাপে ধাপে দেখানো হলো, একদম নতুনরাও যেন বুঝতে পারে। 🖥️ Tinker কী? ...

Jan 29, 20262 min read

Laravel Database Migration: নতুন কলাম যোগ ও পরিবর্তন করার সহজ গাইড (Beginner Friendly)

Laravel ব্যবহার করতে গেলে এক সময় অবশ্যই ডাটাবেজ টেবিলে নতুন কলাম যোগ করা বা পুরোনো কলাম পরিবর্তন করার প্রয়োজন পড়ে। অনেকে এই কাজ phpMyAdmin দিয়ে হাতে করে করেন।কিন্তু Laravel-এ আছে আরও সুন্দর এবং নিরাপদ পদ্ধতি — Migration। এই আর্টিকেলে আপনি শিখবেন:...

Jan 21, 20262 min read

🚀 বস, VPS এ ফাইল আপলোড করতে গিয়ে মাথা খারাপ! ইমেজ চলে, PDF কেন Fail? (Solving a Real Dev Headache)

আরে ভাই, শুনবি? আমার রিসেন্ট প্রোজেক্ট, নিয়ে একটা সেইম প্রবলেমে ফেঁসেছিলাম। ইউজাররা এখানে Image আর PDF ফাইল আপলোড করবে। লোকাল মেশিনে (Dev Environment) তো ফাটাফাটি চলছিল! কিন্তু যেই না VPS এ লাইভ করতে গেলাম... কেল্লা ফতে! সিনেমাটা ছিল এরকম: ✅ ইমেজ (J...

Dec 1, 20252 min read

🎥 সহজে MySQL SQL ফাইল ইম্পোর্ট করার পদ্ধতি

Laravel প্রজেক্টে বা অন্য যেকোনো ওয়েব অ্যাপে ডাটাবেস সেটআপ করতে হলে SQL ফাইল ইম্পোর্ট করা একটি গুরুত্বপূর্ণ ধাপ। আজকে দেখাবো কিভাবে সহজভাবে কমান্ড লাইন ব্যবহার করে SQL ফাইল ইম্পোর্ট করবেন। 1️⃣ প্রয়োজনীয় জিনিস Laragon বা XAMPP ইনস্টল করা থাকতে হবে...

Dec 1, 20252 min read

Untitled Publication

11 posts