- Remove PDF export functionality from TransmittalResource and CreateTransmittal page - Add new TransmittalExcelExport class for formatted Excel exports with company logo - Update export jobs to generate unique filenames per user and refresh user data - Replace PDF export action with Excel export in table actions - Comment out logo in PDF view template as it's no longer used - Fix import alias for Excel export action in GeneralLedger
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Transmittal Report</title>
|
|
<style>
|
|
body {
|
|
font-family: DejaVu Sans, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.header-logo {
|
|
height: 60px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.header-title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
th, td {
|
|
border: 1px solid #000;
|
|
padding: 4px;
|
|
}
|
|
th {
|
|
text-transform: capitalize;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
{{-- <img src="{{ asset('images/logo-dark.png') }}" alt="Logo" class="header-logo"> --}}
|
|
<div class="header-title">Transmittal Report</div>
|
|
</div>
|
|
|
|
@include('transmittal.export.transmittal-export-table', ['transmittals' => $transmittals])
|
|
|
|
</body>
|
|
</html>
|
|
|