所以我对 Laravel(和 MVC 框架)很陌生,只是做了一些基本的教程来了解它。
完成本教程后:https ://bitbucket.org/beni/laravel-4-tutorial/wiki/User_Management
我到了最后一部分(“添加受保护的页面”),它根本不适合我。
这是我通过教程使用的。
// Routes.php
...
Route::group(array('before' => 'auth'), function()
{
Route::get('secret', 'HomeController@showSecret');
});
...
我也试过:
// Routes.php
...
Route::group(array('before' => 'auth'), function()
{
Route::controller('showSecret', 'HomeController');
});
...
这是其他页面:
// HomeController.php
...
public function showSecret()
{
return View::make('frontend/auth/secret');
}
...
和..:
// secret.blade.php
@extends('frontend/layouts/default')
@section('title')
@parent
:: Secret
@stop
@section('content')
<p>content</p>
<p>content</p>
@stop
什么都没有发生,我做错了什么?我想要的只是一个简单的受保护页面,一旦他们登录,就会显示在用户的主页上!
我还在我的默认布局上显示内容部分:
...
<!-- Content -->
@section('content')
@show
...
提前致谢
-J