xguard / laravel-kanban
A kanban for Laravel applications
Installs: 8 886
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 4
Open Issues: 0
Language:CSS
- dev-master
- v1.25.2
- v1.25
- v1.24
- v1.23.2
- v1.23.1
- v1.23
- v1.22.2
- v1.22.1
- v1.22
- v1.21.1
- v1.21
- 1.20.9
- 1.20.8
- v1.20.7
- v1.20.6
- v1.20.5
- v1.20.4
- 1.20.3
- v1.20.2
- v1.20.1
- v1.20
- v1.19
- v1.18
- v1.17
- v1.16.3
- 1.16.2
- v1.16.1
- v1.16
- v1.15
- v1.14
- v1.13
- v1.12.3
- v1.12.2
- v1.12.1
- v1.12
- v1.11.2
- v1.11.1
- v1.11
- v1.10.2
- v1.10.1
- v1.10
- v1.9.1
- v1.9
- v1.8.2
- v1.8.1
- v1.8
- v1.7
- v1.6
- v1.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4
- v1.3
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2
- v1.1.2
- v1.1.1
- v1.1
- v1.0
- v0.9
- v0.8
- v0.6
- v0.5
- v0.4.2
- v0.4.1
- v0.4
- v0.3
- v0.2
- v0.1.1
- v0.1
- dev-feature/optimize-backlog-search
- dev-fix/backlog-related-task-links
- dev-fix/self-notifying-fix
- dev-feature/create-task-generate-link
- dev-fix/sentry-issues
- dev-fix/broken-comments
- dev-fix/dragging-when-selected
- dev-feature/save-sort-method-locally
- dev-feature/sort-kanban
- dev-fix/delete-user
- dev-fix/duplication-when-updating-task
- dev-feature/avatar-fix
- dev-fix/card-duplication-and-metrics-fix
- dev-fix/files-and-reactivity
- dev-fix/deleted-stuff-bugs
- dev-feature/logs-pagination
- dev-feature/avatar-refactor
- dev-feature/return-to-backlog
- dev-feature/taskpane-upgrade
- dev-feature/sanitize-and-refactoring
- dev-feature/bug-fixes
- dev-feature/ci
- dev-fix/deleted-log-data-notification
- dev-feature/live-notifs
- dev-fix/general-fixes
- dev-feature/live-updates-salvage
- dev-feature/live-updates
- dev-fix/xguard-3450
- dev-feature/refactor-controller-2
- dev-fix/all-missing-user-relation-bug-fixes
- dev-feature/refactor-controller-into-actions
- dev-fix/use_https
- dev-feature/file-upload-with-frontend
- dev-feature/file_upload
- dev-fix/timestamps
- dev-tests/actions
- dev-feature/metrics-action-refactor
- dev-hotfix/remove-board-auth
- dev-feature/pr-template
- dev-feature/update-import
- dev-feature/estimated-hours-completed-metric
- dev-feature/refactor-controllers
- dev-feature/task-estimates
- dev-hotfix/bug-fixes-for-release-1.8
- dev-feature/pretty-metrics
- dev-feature/task-unit-tests
- dev-feature/parallel-testing
- dev-feature/set-notif-settings
- dev-feature/right-click
- dev-fix/set-status-backlog
- dev-feature/edit-delete-comments
- dev-feature/remap-version
- dev-feature/log-card-refactor
- dev-feature/notification-settings
- dev-feature/task-controller-refactor
- dev-fix/backlog-completed
- dev-feature/metrics-employee-2
- dev-feature/remove-warning-from-checklist
- dev-feature/frontend-features
- dev-feature/kanban-slack-notifications
- dev-feature/sort-by-erp-employees-contracts
- dev-feature/mentions
- dev-feature/badge-editor
- dev-fix/badge-creation-admin
- dev-feature/badge-create-only-admin
- dev-feature/logs-refactor-backup
- dev-feature/logs-refactor
- dev-feature/logs-refactor-siamak
- dev-feature/copy-to-clipboard
- dev-feature/member-tests
- dev-hotfix/reporter-fixes
- dev-feature/optimize-backlog
- dev-feature/user-profile-backup
- dev-feature/user-profile
- dev-feature/move-erp-data-to-shareables-command
- dev-feature/mobile-friendly
- dev-feature/allowManyErpDataInTask
- dev-feature/contracts
- dev-feature/template-refactor
- dev-feature/notifications
- dev-feature/shared-task-data
- dev-feature/roles
- dev-fix/completed-canceled
- dev-feature/ask-to-delete
- dev-feature/set-status
- dev-feature/remove-phone-icon
- dev-feature/hide-checklist-bar
- dev-feature/related-tasks
- dev-feature/add-task-by-column
- dev-feature/fix-edit-task
- dev-feature/backlog-move
- dev-feature/tasks
- dev-fix/metrics
- dev-backlog
- dev-dynamic-search
- dev-kanban-refactor
This package is auto-updated.
Last update: 2025-04-11 05:12:28 UTC
README
Kanban package for Laravel Projects
Installation
Use the following commands to install
composer require xguard/laravel-kanban
php artisan migrate
php artisan vendor:publish --provider="Xguard\LaravelKanban\LaravelKanbanServiceProvider" --force
Use the following command to create an admin. It will prompt you for an existing email from users table.
php artisan kanban:create-admin
You can now go to the /kanban path to use the package. You must first login to access this url.
Develpment
Follow these steps to make modifications to the package
1: Firstly, download and drag the laravel-kanban folder inside your package folder at root level. Create a "package" folder if you don't have one.
2: Then, add line of code in the psr-4 of your root composer.json
"psr-4": {
//...
"Xguard\\LaravelKanban\\": "package/laravel-kanban/src/"
},
3: Add the Kanban Service provider to the config/app.php
return [ //... "providers" => [ //... Xguard\LaravelKanban\LaravelKanbanServiceProvider::class, ] ];
4: run this command
composer dump-autoload
5: Navigate to the laravel-kanban package folder in your command line and perform the following commands:
composer install npm install npm run dev
6: Return to the root folder in the command line and publish the package with the following command:
php artisan vendor:publish --provider="Xguard\LaravelKanban\LaravelKanbanServiceProvider" --force
7: To run package migrations
php artisan migrate --path=package/laravel-kanban/src/database/migrations
8: To run seeder for testing
php artisan db:seed --class="Xguard\LaravelKanban\database\seeds\EmployeeSeeder"
License
Let's go ahead and say we make it open source? Licensed under the MIT license