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.git
composer install #installing php dependencies
npm install # installing the JS dependencies
npm run build # to build the frontend assets
cp .env.example .env
php artisan key:generate
Replace 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=password
php artisan migrate
Optionally, you can create the dummy data by running the seeder as -
php artisan db:seed
php artisan make:filament-user