https://github.com/flazefy/gudangku-laravel
GudangKu helps you manage your belongings, from home supplies and food stock to furniture. Set reminders to remind you to cleaning or maybe time to restocking some of your home supplies. In this apps also have generate reports to create shopping or maintenance list. Start organizing your inventory with GudangKu’s features. Created using Laravel
https://github.com/flazefy/gudangku-laravel
api-testing cronjob csv-export firebase firebase-storage integration-testing laravel machine-learning mailer migrations mysql pdf pdf-parser php rest-api seeding statistics swagger telegram-bot unit-testing
Last synced: 12 days ago
JSON representation
GudangKu helps you manage your belongings, from home supplies and food stock to furniture. Set reminders to remind you to cleaning or maybe time to restocking some of your home supplies. In this apps also have generate reports to create shopping or maintenance list. Start organizing your inventory with GudangKu’s features. Created using Laravel
- Host: GitHub
- URL: https://github.com/flazefy/gudangku-laravel
- Owner: FlazeFy
- Created: 2024-02-23T13:40:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-26T16:54:58.000Z (3 months ago)
- Last Synced: 2025-04-14T10:59:59.346Z (12 days ago)
- Topics: api-testing, cronjob, csv-export, firebase, firebase-storage, integration-testing, laravel, machine-learning, mailer, migrations, mysql, pdf, pdf-parser, php, rest-api, seeding, statistics, swagger, telegram-bot, unit-testing
- Language: PHP
- Homepage: https://gudangku.leonardhors.com/
- Size: 1.17 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gudangku Documentation
https://gudangku.leonardhors.site========================= Command =========================
# First Run
> composer install
> composer update
> php artisan key:generate
> php artisan storage:link
> php artisan serve# Run Application
> php artisan serve# Run Queue Job
> php artisan queue:work# Run Application On Custom Pors
> php artisan serve # port=****
ex : php artisan serve # port=9000# Run Migrations
> php artisan migrate# Run Migrations On Specific file
> php artisan migrate --path=database/migrations/migration/file.php# Run Seeder
> php artisan db:seed class=DatabaseSeeder
or
> php artisan db:seed# Run Scheduler
> php artisan schedule:run# Make Controller
> php artisan make:controller Controller --resource# Make Model
> php artisan make:model Model# Make Seeder
> php artisan make:seeder Seeder# Make Factories
> php artisan make:factory Factory# Make Migrations
> php artisan make:migration create__table# Make Migrations on Specific File
> php artisan migrate # path=/database/migrations/.php# Make Middleware
> php artisan make:middleware# Make Mail
> php artisan make:mail Email# Make Test
> php artisan make:test Test# Make Deploy
> php artisan route:cache
> php artisan cache:clear
> php artisan route:clear