An open API service indexing awesome lists of open source software.

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

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