文件位置:
App\Helpers\json.php;
使用:
json_success($msg, $data);
json_fail($msg, $data);
文件位置:
App\Helpers\logger.php;
使用:
logInfo($title, [$msg]);
logWarning($title, [$msg]);
logError($title, [$msg]);
logDebug($title, [$msg]);
文件位置:
App\Models\User
使用:
jwt整合到了auth,使用与auth一样
文件位置:
App\Exceptions\Handler
生成对应文件:
php artisan init:model-service
文件位置:
App\Repositories\*
App\Facades\*
App\Providers\RepositoryServiceProvider
使用:
use App\Facades\***;
***::getFirst()...
这里封装的方法可以查看:
App\Traits\RepositoryBaseRepositoryTrait
App\Repositories\CommonRepository
文件位置:
App\Helpers\*
文件位置:
App\Traits\Controller\*
使用:
use App\Facades\Controller\***;