这是我的刀片视图:
@extends('emails.newlayout')
@section('title', 'Reminder')
@section('content')
<?php $total = 0; ?>
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
@foreach ($sallary as $emp)
<tr>
<td>{{ $emp->employee['name'] }}</td>
<td>{{ $emp['value'] }}</td>
<?php $total += $emp['value']; ?>
</tr>
@endforeach
</tbody>
</table>
<p>Total: US${{ $total }}</p>
@stop
这是在我的newlayout.blade.php的标题内:
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
当我打开它作为html时,在我的浏览器上运行正常,但是当我在laravel上渲染它时,它根本不加载引导程序css(加载其他所有内容)。我不知道我做错了什么?
输出
<table class="m_-7473167048951624218table m_-7473167048951624218table-striped">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>Test 2</td>
<td>1,093.55</td>
</tr>
<tr>
<td>Test 3</td>
<td>1,090.33</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
解决了
令人尴尬,但由于电子邮件的缘故,结果却令人尴尬。每个样式都应该是电子邮件中的内联css,否则根据有关在线样式邮件的大量文档,它不能很好地呈现。