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

https://github.com/flazefy/churchweb


https://github.com/flazefy/churchweb

admin-dashboard church laravel mvc php religion sql

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

========================= 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 Deploy
> php artisan route:cache
> php artisan cache:clear
> php artisan route:clear