0
我有這個問題,其中所有頁面上面都印有'a'字符,似乎它出現在DOCTYPE之前,我無法在任何地方找到它!Laravel 5'a'字符打印出來
master.blade.php:
<!DOCTYPE html>
<html>
<head>
<title>@yield('title')</title>
@include('elements.css')
</head>
<body>
<div class="container-fluid">
@include('elements.html.navbartop')
<div class="container" style="margin-top: 80px;margin-bottom: 40px">
@yield('content')
</div>
</div>
@include('elements.html.footer')
@include('elements.js')
index.blade.php:
@extends('layout.master')
@section('title', 'Home Index')
@section('content')
<div class="row">
<div class="col-md-8 col-md-offset-2">
@include('elements.session.flash')
<div class="row">
<div class="col-md-12">
<h1 style="margin-bottom: 30px">Home Index</h1>
</div>
</div>
</div>
</div>
@endsection
後 – BKF
一個頁面的代碼可以共享您'layout'頁? –
如果它只出現在一組頁面中,我會懷疑它是一個特定的控制器/視圖。否則,它可能在你的路線中,它可能在你的主層視圖中,它可能在中間件中。這可能是很多事情...... – Wistar