我正在尝试从文件夹(提供者)路由我的 account.blade.php,但每次我这样做都会破坏布局。
所以 URL 看起来像这样
mywebsite.com/providers/account
路线:
Route::get('providers/account', array('as' => 'account', 'uses' => 'ProviderController@getLogin' ));
控制器:
public function getLogin()
{
return View::make('providers.account')
->with('title', 'Artsgap Account');
}
查看/提供者/account.php:
@extends('layouts.default')
@section('content')
<div class="row">
<section class="columns small-12 large-8">
<h1>Hello Account</h1>
<section>
</div>
@stop