bottelet / flarepoint
DaybydayCRM is a free, open-source and self-hosted CRM platform based of Laravel
Package info
github.com/Bottelet/DaybydayCRM
Language:JavaScript
Type:project
pkg:composer/bottelet/flarepoint
Fund package maintenance!
Requires
- php: >=7.3.9
- aws/aws-sdk-php: ^3.112
- elasticsearch/elasticsearch: ^6.1
- google/apiclient: ^2.2
- guzzlehttp/guzzle: ^6.3
- laravel/cashier: ^10.2
- laravel/framework: ^7.0
- laravel/helpers: ^1.1
- laravel/tinker: ^2.0
- laravel/ui: ^2.0
- laravelcollective/html: 6.0.*@dev
- league/flysystem-aws-s3-v3: ~1.0
- league/flysystem-cached-adapter: ~1.0
- mews/purifier: ^3.1
- predis/predis: ^1.1
- ramsey/uuid: ^3.6
- spatie/flysystem-dropbox: ^1.0
- yajra/laravel-datatables-oracle: ~9.0
Requires (Dev)
- barryvdh/laravel-debugbar: ~3.2
- facade/ignition: ^2.0
- fzaninotto/faker: ~1.8
- laravel/dusk: ^5.8
- mockery/mockery: 0.9.*
- nunomaduro/collision: ^4.1
- phpunit/phpunit: ^8.5
- symfony/css-selector: 2.8.*|3.0.*
- symfony/dom-crawler: 2.8.*|3.0.*
- dev-develop
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.0
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3
- 1.2
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1
- V1
- dev-copilot/fix-code-for-review-comments
- dev-copilot/fix-code-review-suggestion
- dev-copilot/fix-github-actions-phpunit-job
- dev-copilot/fix-phpunit-failure
- dev-feature/upgrade-to-vite
- dev-standards/pint-phpunit-phpstan
- dev-bugfix/entrust-permission-problems
- dev-copilot/list-refactoring-opportunities
- dev-Laravel-11-upgrade
- dev-backup/upgrade-branch
- dev-feat/laravel-11-upgrade
- dev-master
- dev-offer-sales
- dev-demo
- dev-old-develop
This package is not auto-updated.
Last update: 2026-05-23 14:48:30 UTC
README
======================
DaybydayCRM is an everyday customer relationship management system (CRM) to help you keep track of customers, tasks, appointments, invoices, payments, documents, and other daily workflows. The CRM is available as an open-source, self-hosted platform and as a hosted CRM system on daybydaycrm.com.
Demo
Try a demo version of DaybydayCRM at:
Support the project
If you benefit from or like using DaybydayCRM, please consider helping drive the future development of the project by:
- Starring the project. ⭐
- Creating a pull request. 🚧
- Donating/Sponsoring today. 💛
- Considering the hosted version of DaybydayCRM. ✔️
The project continues to ship features, releases, support, and fixes through community and sponsor support.
Features
- Tasks and leads management
- Invoice management
- Time registration
- User absence and vacation registration
- Client and user appointments
- Role and permission management
- Global search
- Client overview
- Uploading documents and tracking client files
- And much more; see daybydaycrm.com for a broader feature overview
Current stack
- PHP 8.3+
- Laravel 12
- MySQL/MariaDB
- Redis/queue support
- Blade + Vue 2 + Vite
- PHPUnit, Dusk, and Playwright
- Docker Compose and Makefile-driven workflows
Get started
For help getting started, take a look at the wiki first:
Quick start with Docker
make up make dsh make setup
Quick start on host
composer install yarn install cp .env.example .env php artisan key:generate php artisan migrate:fresh --seed yarn run build composer dev
Useful commands
make clear— clear Laravel cachesmake test— run PHPUnit with stop-on-failure behaviormake test-filter f=SomeTest— run a filtered PHPUnit subsetmake paratest— run tests in parallelmake dmfs— fresh migrate/seed inside Dockermake dseed— seed demo and dummy data inside Dockergit ls-files '*.php' | xargs -n1 php -l— minimum required PHP syntax lint before push/PR
Setup Commands
php artisan user:create-admin— create an admin user interactively (safe on fresh or seeded databases)php artisan user:create-admin --name="Admin" --email="admin@example.com"— safer interactive password promptADMIN_PASSWORD="$(op read 'op://vault/admin/password')" php artisan user:create-admin --name="Admin" --email="admin@example.com" --password="$ADMIN_PASSWORD"— automation example using a secret sourcephp artisan daybyday:upgrade— safely upgrade DaybydayCRM permissions, roles, and verify the systemphp artisan entrust:diagnose— diagnose permission and role chain issuesphp artisan entrust:cache-clear— clear permission and role cache
Repository guide
AGENTS.md— contributor and AI-agent workflow guide.github/ARCHITECTURE.md— architecture and technical debt notes.github/TESTING.md— testing and isolation standards.github/ROADMAP.md— current modernization roadmap.github/copilot-instructions.md— concise Copilot-specific guidance.junie/*.md— short operational summaries for analysis, testing, fixes, and refactorsCHANGELOG.md— current branch changelog summary
Architecture snapshot
DaybydayCRM follows a layered Laravel architecture:
Routes -> Middleware -> Controllers -> Services/Actions -> Repositories/Models -> Views or JSON responses
Current repository conventions emphasize:
- thin controllers
- FormRequest-based validation
- service/action extraction for business logic
- enums and helpers for fixed value sets
- observer and trait-based model behavior
- explicit JSON vs web response handling
Contribution Guide
DaybydayCRM follows PSR-2 coding standards.
Before pushing changes:
- keep tests self-contained and factory-driven
- place new HTTP/controller coverage in
tests/Feature/* - normalize dates before assertions
- refresh users after permission changes in tests
- run
git ls-files '*.php' | xargs -n1 php -l
If workflows are available, all tests should pass on GitHub Actions, or failing expectations should be updated to reflect intentional behavior changes.
Feedback
Feel free to send feedback on Twitter or file an issue. Feature requests are always welcome. If you want to contribute, please take a quick look at the repository guidance above.
Localization
You can help translate DaybydayCRM into other languages by copying resources/lang/en into, for example, resources/lang/de and translating the files inside that folder.
Licenses
DaybydayCRM from version 2.0.0 and up is open-sourced software licensed under the GNU GPLv3. FAQ GPL
DaybydayCRM under and not including version 2.0.0 is open-sourced software licensed under the MIT license.
