フォルダー (プロバイダー) から 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