34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Novo briefing de contato</title>
|
|
<style>
|
|
body { margin: 0; padding: 24px; background: #FBF9F4; font-family: Georgia, 'Times New Roman', serif; color: #1B1C19; }
|
|
.wrap { max-width: 600px; margin: 0 auto; }
|
|
h1 { font-size: 20px; font-weight: 600; margin: 0 0 16px; }
|
|
table { width: 100%; border-collapse: collapse; }
|
|
th, td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid #C5C8B8; font-size: 14px; }
|
|
th { width: 40%; font-weight: 600; color: #556B2F; }
|
|
.footer { margin-top: 16px; font-size: 12px; color: #5D6155; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<h1>Novo briefing de contato</h1>
|
|
<table>
|
|
@foreach ($fields as $label => $value)
|
|
<tr>
|
|
<th scope="row">{{ $label }}</th>
|
|
<td>{{ $value ?: '—' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
<p class="footer">
|
|
Enviado pelo site {{ config('app.name') }}.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|