Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coder2z/laravel6-dev
对Laravel6进行了小修改(也不算是修改,就算是把常用的东西整合上去)
https://github.com/coder2z/laravel6-dev
Last synced: 5 days ago
JSON representation
对Laravel6进行了小修改(也不算是修改,就算是把常用的东西整合上去)
- Host: GitHub
- URL: https://github.com/coder2z/laravel6-dev
- Owner: coder2z
- Created: 2020-04-14T06:41:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T12:18:29.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T20:23:30.179Z (over 1 year ago)
- Language: PHP
- Size: 220 KB
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Laravel6
#### 对Laravel6进行了小修改(也不算是修改,就算是把常用的东西整合上去)
#### 1、返回接口统一
文件位置:
App\Helpers\json.php;
使用:
json_success($msg, $data);
json_fail($msg, $data);
#### 2、Monolog\Logger整合
文件位置:
App\Helpers\logger.php;
使用:
logInfo($title, [$msg]);
logWarning($title, [$msg]);
logError($title, [$msg]);
logDebug($title, [$msg]);
#### 3、JWT整合
文件位置:
App\Models\User
使用:
jwt整合到了auth,使用与auth一样
#### 4、重写了异常处理
文件位置:
App\Exceptions\Handler
#### 5、整合了Repositories 设计模式
生成对应文件:
php artisan init:model-service
文件位置:
App\Repositories\*
App\Facades\*
App\Providers\RepositoryServiceProvider
使用:
use App\Facades\***;
***::getFirst()...
这里封装的方法可以查看:
App\Traits\RepositoryBaseRepositoryTrait
App\Repositories\CommonRepository
#### 6、在Helpers中封装了很多方法,也可以自己添加方法
文件位置:
App\Helpers\*
#### 7、在 App\Traits\Controller\*下封装了一些公共的Controller方法,需要使用就use
文件位置:
App\Traits\Controller\*
使用:
use App\Facades\Controller\***;