Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用伟大的魅力捆绑到laravel framework 3.2.
laravel framework 3.2
如何在页面中添加登录/admin页面?
/admin
Charisma 本身并不是一个管理小组。它只是一个用户界面(或主题,随您的喜好),您可以将其用于您自己的管理面板。您将需要构建自己的面板来使用它。
请考虑查看Laravel Auth 使用文档以获取有关使用身份验证和保护您的管理员路由的更多信息。
Route::get('admin', array('before' => 'auth', function() {}));