Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Avbook | 8,777 | 7 months ago | 85 | PHP | ||||||
AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database | ||||||||||
Aimeos Laravel | 6,489 | 25 | 1 | 12 days ago | 126 | January 24, 2023 | 3 | mit | PHP | |
Laravel ecommerce package for ultra fast online shops, scalable marketplaces, complex B2B applications and #gigacommerce | ||||||||||
Laravel Tips | 5,844 | a month ago | 1 | |||||||
Awesome tips for Laravel | ||||||||||
Laravel Backup | 5,338 | 699 | 130 | 2 days ago | 278 | August 09, 2023 | 4 | mit | PHP | |
A package to backup your Laravel app | ||||||||||
Database | 2,597 | 13,607 | 6,512 | a day ago | 707 | August 08, 2023 | mit | PHP | ||
[READ ONLY] Subtree split of the Illuminate Database component (see laravel/framework) | ||||||||||
Laravel Translatable | 1,975 | 349 | 136 | 4 years ago | 44 | June 03, 2019 | mit | PHP | ||
[Deprecated] A Laravel package for multilingual models | ||||||||||
Pingcrm | 1,872 | a month ago | 26 | mit | PHP | |||||
A demo application to illustrate how Inertia.js works. | ||||||||||
Backup Manager | 1,626 | 275 | 14 | 9 months ago | 43 | July 05, 2022 | 14 | mit | PHP | |
Database backup manager for dumping to and restoring databases from S3, Dropbox, FTP, SFTP, and Rackspace Cloud | ||||||||||
Laravel Tags | 1,482 | 64 | 30 | a month ago | 69 | July 31, 2023 | 3 | mit | PHP | |
Add tags and taggable behaviour to your Laravel app | ||||||||||
Prequel | 1,445 | 2 | 1 | 4 months ago | 12 | February 28, 2022 | 4 | mit | JavaScript | |
Prequel for Laravel. Clear and concise database management. |
A demo application to illustrate how Inertia.js works.
Clone the repo locally:
git clone https://github.com/inertiajs/pingcrm.git pingcrm
cd pingcrm
Install PHP dependencies:
composer install
Install NPM dependencies:
npm ci
Build assets:
npm run dev
Setup configuration:
cp .env.example .env
Generate application key:
php artisan key:generate
Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqlite
Run database migrations:
php artisan migrate
Run database seeder:
php artisan db:seed
Run the dev server (the output will give the address):
php artisan serve
You're ready to go! Visit Ping CRM in your browser, and login with:
To run the Ping CRM tests, run:
phpunit