Laravel 查看默认的用户认证
Posted 夜愿生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 查看默认的用户认证相关的知识,希望对你有一定的参考价值。
跟踪查看用户认证实现
在路由器加个反射 route/web.php
<?php Route::get(‘/‘, function () { return view(‘welcome‘); }); Auth::routes(); Route::get(‘/home‘, ‘[email protected]‘); Route::get(‘/find/{class}/{action?}‘,function($class,$action = null){ if($action == null) { $ca = new ReflectionClass($class); } else { $ca = new ReflectionMethod($class, $action); } dd($ca); });
以上是关于Laravel 查看默认的用户认证的主要内容,如果未能解决你的问题,请参考以下文章