摘要:
如何生成api的使用文档:比如Blogger的Api这样的:方便你的用户来阅读使用。参考:https://laravel-apidoc-generator.readthedocs.io/en/latest/index.html执行:composer require mpociot/laravel-apidoc-generator执行:php artisan vendor:publish --pro... 阅读全文
摘要:
默认情况下,Laravel提供了一个web的邮箱验证路由,Laravel 的 Auth\VerificationController 类包含了发送验证链接和验证 Email 的必要逻辑。通过将 verify 选项传给 Auth::routes 方法,就能为这个控制器注册所需要的路由:Auth::routes(['verify' => true]);没有api请求的。先复制一下Auth文件夹内的Ve... 阅读全文