https://github.com/birjemin/laravel-helper
:nut_and_bolt: 目前在用的自定义工具包 :sunny:
https://github.com/birjemin/laravel-helper
helper laravel lumen php
Last synced: 3 months ago
JSON representation
:nut_and_bolt: 目前在用的自定义工具包 :sunny:
- Host: GitHub
- URL: https://github.com/birjemin/laravel-helper
- Owner: Birjemin
- Created: 2018-09-13T13:29:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T09:37:31.000Z (7 months ago)
- Last Synced: 2025-06-08T22:10:03.022Z (4 months ago)
- Topics: helper, laravel, lumen, php
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
## laravel小助手
依赖laravel
1. BusinessException
用于handler捕获所有的exception2. Helper
用于定义一些公共的方法3. Job
用于job4. Repository
用于repository5. Transformer
用于格式化数据6. Validator
用于验证数据(以后不用写下面的东东啦)
```
if(...) {
throw new Exception('条件不合法');
}
if (!$user = User::find(1)) {
throw new Exception('用户不存在')
}
```