Commit c92578b2 authored by Taylor Otwell's avatar Taylor Otwell

Merge branch 'master' of github.com:laravel/laravel

parents 681f80ea 5a1c1bf8
...@@ -63,7 +63,7 @@ It is common to limit access to certain routes only to logged in users. In Larav ...@@ -63,7 +63,7 @@ It is common to limit access to certain routes only to logged in users. In Larav
To protect a route, simply attach the **auth** filter: To protect a route, simply attach the **auth** filter:
Route::get('admin', array('before' => 'auth', function() {}); Route::get('admin', array('before' => 'auth', function() {}));
> **Note:** You are free to edit the **auth** filter however you like. A default implementation is located in **application/routes.php**. > **Note:** You are free to edit the **auth** filter however you like. A default implementation is located in **application/routes.php**.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment