A Laravel Filament 3 application for managing projects with ticket management and status tracking.
- Project management with ticket prefix configuration
- Role-based access control (using Filament Shield)
- Team member management with role assignments
- Customizable ticket statuses with color coding
- Ticket management with assignees and due dates
- Unique ticket identifiers
- Epic management for organizing tickets into larger initiatives
- Comment system for tickets to facilitate team discussions
- Kanban board view for visualizing ticket progress
- Assign ticket to multi users
- User contributions chart
- Timeline view
- Export ticket data to CSV
- Leaderboard for team member performance
- External dashboard view (Client Portal)
- PHP > 8.2+
- Laravel 12
- MySQL 8.0+ / PostgreSQL 12+
- Composer
-
Clone the repository:
git clone https://github.com/SeptiawanAjiP/dewakoding-project-management cd dewakoding-project-management -
Install dependencies:
composer install npm install -
Set up environment:
cp .env.example .env php artisan key:generate -
Configure database in
.envfile:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=dewakoding_project_management DB_USERNAME=root DB_PASSWORD= -
Run migrations:
php artisan migrate -
Create storage link for file uploads
php artisan storage:link -
Create a Filament admin user:
php artisan make:filament-user -
Activate Role & Permission
php artisan shield:setup php artisan shield:install php artisan shield:super-admin -
Start the development server:
php artisan serve
- Access the Filament admin panel at
http://localhost:8000/admin - Log in with the Filament user credentials you created
- Create a new project with custom ticket prefix
- Add team members to the project
- Create and customize ticket statuses
- Add tickets and assign to team members
The Board View offers a familiar kanban-style interface for ticket management:
- Drag-and-drop tickets between status columns
- Customize columns to match your team's process
- Quick-edit functionality for updating tickets directly from the board
The Timeline feature provides a chronological perspective of your project work:
- Visualize project roadmap with start and end dates
- Track milestone completion across time periods
- Easily identify scheduling conflicts or resource bottlenecks
Epics help organize related tickets into larger initiatives:
- Group tickets by feature, release, or business objective
- Track progress across multiple tickets
- Set start and end dates for planning purposes
- Visualize which tickets belong to which initiatives
The comment system enhances team collaboration:
- Team members can discuss tickets directly in the application
- All comments are timestamped and attributed to users
- Supports rich text formatting for improved readability
- Enables better context sharing and decision documentation
This project comes pre-configured with Laravel Octane and FrankenPHP for improved performance. Here's how to use it:
The required packages are already included in the project dependencies:
laravel/octane(in composer.json)chokidar(in package.json for file watching)
They will be installed automatically when you run composer install and npm install during the standard installation process.
To run the application in development mode with auto-reloading, simply use the provided composer script:
php artisan octane:start --server=frankenphp --watch
This project is open-sourced software licensed under the MIT license.







