Files
.well-known
app
bootstrap
config
database
public
resources
assets
lang
views
auth
layouts
app.blade.php
pdf.blade.php
wallboard.blade.php
vendor
awardcategories.blade.php
bidderlist.blade.php
bidders.blade.php
carshowscores.blade.php
carshowwinners.blade.php
checkout.blade.php
checkout_complete.blade.php
checkout_complete_list.blade.php
checkout_select_form.blade.php
editwinners.blade.php
finaltally.blade.php
home.blade.php
itemlist.blade.php
items.blade.php
judges.blade.php
judgingentry.blade.php
pcentry.blade.php
receiptpdf.blade.php
receiptpdf2.blade.php
reprint_receipt_form.blade.php
showcarlist.blade.php
showcars.blade.php
vehicletypes.blade.php
wallboard.blade.php
winnerlist.blade.php
winners.blade.php
winnersbyitem.blade.php
winnertotal.blade.php
winnertotalform.blade.php
winningbidderlist.blade.php
routes
stats
storage
tests
.env.example
.ftpconfig
.gitattributes
.gitignore
.htaccess.bak
artisan
composer.json
composer.lock
package.json
phpunit.xml
readme.md
server.php
webpack.mix.js
silent-auction/resources/views/layouts/pdf.blade.php
2018-06-11 13:43:21 -04:00

35 lines
692 B
PHP

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Styles -->
<link href="{{ asset('css/pdf.css') }}" rel="stylesheet">
<style>
.page-break {
page-break-after: always;
}
body{
background-color: #ffffff;
}
</style>
</head>
<body>
<div id="app">
@yield('content')
</div>
<!-- Scripts -->
<script src="{{ asset('js/app.js') }}"></script>
</body>
</html>