我有这个问题,其中有一个' a'在所有页面上打印出来的字符,似乎它出现在DOCTYPE之前,我无法在任何地方找到它!
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
答案 0 :(得分:0)
没关系,我发现它是在filesystems.php的开头发现的,这是由谁知道是谁或什么造成的意外错误。
a<?php
抱歉