0

我正在尝试从文件夹(提供者)路由我的 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
4

1 回答 1

0

当您链接到您的 CSS 文件时,您使用的是绝对链接还是相对链接?(布局失败是因为您正在执行类似 ../css/styles.css 的操作吗?)

于 2013-11-11T21:36:31.327 回答