码迷,mamicode.com
首页 > 其他好文 > 详细

Laravel 查看默认的用户认证

时间:2017-07-24 23:42:02      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:dex   return   默认   get   find   route   out   new   welcome   

跟踪查看用户认证实现

在路由器加个反射 route/web.php

<?php


Route::get(‘/‘, function () {
    return view(‘welcome‘);
});

Auth::routes();

Route::get(‘/home‘, ‘HomeController@index‘);

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 查看默认的用户认证

标签:dex   return   默认   get   find   route   out   new   welcome   

原文地址:http://www.cnblogs.com/yeyuansheng/p/7231575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!