Looking to hire Laravel developers? Try LaraJobs

multi-module-laravel-project-template maintained by terranc

Description
The Laravel Framework.
Last update
2023/04/19 22:09 (dev-dependabot/composer/guzzlehttp/psr7-2.5.0)
License
Links
Downloads
1

Comments
comments powered by Disqus

Installation

cp .env.example .env
# 配置.env
php artisan key:generate
php artisan migrate --seed
# 打开 http://xxxxx.test/admin
# admin/admin

Usage

// Cache
\CacheClient::put(fmt(CacheService::KEY_USER_INFO, 123), $user);    // 所有缓存Key必须统一在 CacheService 中定义

// Exception
throw new ApiNotFoundException('无可用记录');    // 404
throw new ApiRequestException();    // 400
throw new ApiSystemException();     // 500
throw new ApiUnAuthException();     // 401