在下面的“@收益率”函数中,它显示为不像刀片函数关键字的普通单词。
@yield('content')
</div>
@yield('footer')
发布于 2019-12-23 12:43:51
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Admin | @yield('title')</title>
<!--Has all the sylesheets attached already!-->
@include('Elements/_head')
<!--Custom CSS or CSS Files for particular page-->
@yield('styles')
</head>
<body class="hold-transition skin-blue sidebar-mini" onload="startTime()">
<div class="wrapper">
<!--Application Header-->
@include('Elements/_header')
<!--Application Sidebar-->
@include('Elements/_side')
<!--Page Content Main-->
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
@yield('title')
<small></small>
</h1>
</section>
<!-- Main content -->
<section class="content">
<img id="loader" src="{{url::asset('images/loading.gif')}}">
@yield('content')
</section>
</div>
<!--Footer of Application-->
@include('Elements/_footer')
</div>
<!--Has all the scripts already attached-->
@include('Elements/_base')
<!--Custom scripts for particular pages-->
@yield('scripts')
</body>
</html>https://stackoverflow.com/questions/59436146
复制相似问题