This is a small and Open-source CRM application created using the Filament PHP.
- PHP (Laravel)
- Filament PHP
git clone https://github.com/frikishaan/tiny-crm.gitcomposer install #installing php dependencies
npm install # installing the JS dependencies
npm run build # to build the frontend assetscp .env.example .envphp artisan key:generateReplace the following values in .env file with your database credentials. For example -
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=tiny_crm
DB_USERNAME=postgres
DB_PASSWORD=passwordphp artisan migrateOptionally, you can create the dummy data by running the seeder as -
php artisan db:seedphp artisan make:filament-user