Laravel用户配置文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel用户配置文件相关的知识,希望对你有一定的参考价值。
This is a route that ables the website to show the user's profile to the world.
Route::get('(:any)', function($username){ $user = User::where_username($username)->first(); if ($user) { return "The user exist, show the profile."; } return Response::error('404'); });
以上是关于Laravel用户配置文件的主要内容,如果未能解决你的问题,请参考以下文章