A beautiful, modern Kanban board todo application built with Laravel 12, Vue.js 3, and Inertia.js. Stay organized and productive with an intuitive drag-and-drop interface and powerful project management features.
- Kanban Board Interface - Visual workflow management with three columns: To Do, In Progress, Done
- Drag & Drop Functionality - Seamlessly move tasks between columns with intuitive drag-and-drop
- Beautiful, Modern UI - Gradient backgrounds, smooth animations, and responsive design
- Complete CRUD Operations - Create, read, update, and delete todos seamlessly
- Priority Management - 5-level priority system (Low to Urgent) with color-coded badges
- Due Date Tracking - Set due dates with overdue indicators
- Status Management - Automatic status updates when moving between columns
- Dashboard Statistics - Real-time overview of your todo statistics across all columns
- Form Validation - Comprehensive client and server-side validation
- MySQL Database - Robust data storage with proper relationships
- Backend: Laravel 12, PHP 8.2
- Frontend: Vue.js 3, Inertia.js
- Styling: Tailwind CSS 4.0
- Database: MySQL
- Build Tool: Vite
- Code Quality: Laravel Pint
- PHP 8.2 or higher
- Node.js 18 or higher
- MySQL
- Composer
- XAMPP (for local development)
-
Clone the repository
git clone <repository-url> cd my-boosted-app
-
Install PHP dependencies
composer install
-
Install JavaScript dependencies
npm install
-
Environment Setup
cp .env.example .env php artisan key:generate
-
Configure Database
- Start XAMPP and ensure MySQL is running
- Create a database named
my_boosted_appin phpMyAdmin - Update your
.envfile:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=my_boosted_app DB_USERNAME=root DB_PASSWORD=
-
Run Migrations
php artisan migrate
-
Seed Sample Data (Optional)
php artisan tinker --execute="App\Models\Todo::factory()->count(10)->create();" -
Build Assets
npm run build
-
Start Development Server
php artisan serve
-
Visit your application
http://127.0.0.1:8000
The application features a three-column Kanban board:
- To Do: New tasks and items that haven't been started
- In Progress: Tasks currently being worked on
- Done: Completed tasks
- Click the "Add New Todo" button
- Fill in the title, description (optional), priority, and due date
- New todos automatically start in the "To Do" column
- Drag & Drop: Simply drag any todo card from one column to another
- Status Updates: Tasks automatically update their status based on the column they're moved to
- Edit: Click the edit icon on any todo card to modify details
- Delete: Click the delete icon and confirm removal
- View Details: Click on any todo to see full information
View real-time statistics showing:
- Total number of todos in each column
- Overdue tasks
- Priority distribution
- Completion rates
id- Primary keytitle- Todo title (required)description- Todo description (optional)status- Current status (todo, in_progress, done)priority- Priority level (1-5)due_date- Due date (optional)created_at- Creation timestampupdated_at- Last update timestamp
- Smooth animations during drag operations
- Visual feedback when hovering over drop zones
- Automatic status updates when dropped in different columns
- Touch-friendly for mobile devices
- To Do: Initial state for new tasks
- In Progress: Active tasks being worked on
- Done: Completed tasks with visual indicators
Color-coded priority badges:
- Low (1): Gray
- Medium (2): Blue
- High (3): Yellow
- Critical (4): Orange
- Urgent (5): Red
# Start development server
php artisan serve
# Build assets for development
npm run dev
# Build assets for production
npm run build
# Run code formatting
vendor/bin/pint
# Generate routes for JavaScript
php artisan ziggy:generate
# Run migrations
php artisan migrate
# Fresh migration with sample data
php artisan migrate:fresh --seed- Fork the repository
- Create a feature branch
- Make your changes
- Run code formatting:
vendor/bin/pint - Submit a pull request
This project is open-sourced software licensed under the MIT license.