https://github.com/forecho/laravel-api
Laravel Api Template
https://github.com/forecho/laravel-api
Last synced: 6 months ago
JSON representation
Laravel Api Template
- Host: GitHub
- URL: https://github.com/forecho/laravel-api
- Owner: forecho
- Created: 2021-12-13T02:16:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T21:06:18.000Z (about 2 years ago)
- Last Synced: 2025-07-09T07:51:01.571Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 771 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Api
## Install
```shell
composer install
php artisan key:generate
php artisan queue:table
php artisan migrate
```
## Queue
```shell
php artisan queue:work
```
## Dev
Serve
```shell
php artisan serve
```
http://localhost:8000/
Fix code style
```shell
vendor/bin/pint
// or
composer fix-style
```