birjemin/laravel-helper

There is no license information available for the latest version (0.0.7) of this package.

自己的laravel小助手,好的东西往里面添加,然后就可以偷懒了

0.0.7 2019-11-28 06:55 UTC

This package is auto-updated.

Last update: 2024-04-28 16:50:19 UTC


README

依赖laravel

  1. BusinessException 用于handler捕获所有的exception

  2. Helper 用于定义一些公共的方法

  3. Job 用于job

  4. Repository 用于repository

  5. Transformer 用于格式化数据

  6. Validator 用于验证数据(以后不用写下面的东东啦)

if(...) {
    throw new Exception('条件不合法');
}
if (!$user = User::find(1)) {
    throw new Exception('用户不存在')
}