https://github.com/hybridly/pingcrm
Port of Inertia's PingCRM to Hybridly
https://github.com/hybridly/pingcrm
hybridly inertia laravel pingcrm
Last synced: about 1 month ago
JSON representation
Port of Inertia's PingCRM to Hybridly
- Host: GitHub
- URL: https://github.com/hybridly/pingcrm
- Owner: hybridly
- Created: 2022-12-13T08:39:25.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T12:51:53.000Z (over 2 years ago)
- Last Synced: 2025-07-08T05:40:39.503Z (3 months ago)
- Topics: hybridly, inertia, laravel, pingcrm
- Language: PHP
- Homepage:
- Size: 489 KB
- Stars: 16
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
Ping CRM
# What's changed
The visual aspect of things is mostly unchanged from the original implementation, but there has been some changes under the hood:
- **Up-to-date**: This repository uses Vue 3, Laravel 9 and Tailwind CSS 3
- **Vite**: For super-fast HMR
- **Typescript**: Vue components are rewritten in Composition API + Typescript
- **Data objects**: `spatie/laravel-data` is used for TS type generation and added type safety
- **Localization**: Locale switching has been implemented to illustrate Hybridly's integration with vue-i18n# Installation
## Via dev containers
Simply open Visual Studio Code (or any dev container-compatible editor) and open this project in a container! You can then setup as usual:
```
php artisan key:generate
php artisan migrate
php artisan db:seed
```## Via Laravel Sail
```
composer install
vendor/bin/sail up -d
vendor/bin/sail artisan key:generate
vendor/bin/sail artisan migrate
vendor/bin/sail artisan db:seed
```# Supported languages
The following languages have a localization available:
* English (en)
* Japanese (ja)
* Simplified Chinese (zh_CN) -- 🙏 @ycs77
* Traditional Chinese (zh_TW) -- 🙏 @ycs77PRs for other languages are welcome!