Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Failing after 18s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 11s
Laravel Pint / pint (pull_request) Successful in 6m33s
Laravel Larastan / larastan (pull_request) Failing after 6m51s
89 lines
2.0 KiB
PHP
89 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{{-- <title>Invoice Data Report</title> --}}
|
|
</head>
|
|
<body>
|
|
|
|
<div style="text-align: center; font-weight: bold;">
|
|
{{ $company }}
|
|
</div>
|
|
<br>
|
|
<p>{!! $greeting !!}</p>
|
|
|
|
<table border="1" width="50%" cellpadding="6" cellspacing="0">
|
|
|
|
<tr>
|
|
<th width="30%">Title</th>
|
|
<th width="40%">Details</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Requested DateTime</td>
|
|
<td>{{ $request->created_at->format('d-m-Y H:i:s') }}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Plant</td>
|
|
<td>{{ $request->plant->name ?? $request->plant_id }}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Item Code</td>
|
|
<td>{{ $request->item->code ?? $request->code }}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Job Number</td>
|
|
<td>{{ $request->aufnr }}</td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<table border="1" width="50%" cellpadding="6" cellspacing="0">
|
|
<tr>
|
|
<th>Characteristics Name</th>
|
|
<th>SAP Value</th>
|
|
<th>Update Value</th>
|
|
<th>WorkFlow ID</th>
|
|
</tr>
|
|
|
|
@forelse ($tableData as $char)
|
|
<tr>
|
|
{{-- <td>{{ $char['characteristic_name'] ?? '-' }}</td> --}}
|
|
<td>{{ strtoupper($char['characteristic_name'] ?? '-') }}</td>
|
|
<td>{{ $char['current_value'] ?? '-' }}</td>
|
|
<td>{{ $char['update_value'] ?? '-' }}</td>
|
|
<td>{{ $char['work_flow_id'] ?? '-' }}</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="4">No Characteristics Found</td>
|
|
</tr>
|
|
@endforelse
|
|
</table>
|
|
<br>
|
|
<table border="1" width="50%" cellpadding="6" cellspacing="0">
|
|
<tr>
|
|
<th>Approver Name</th>
|
|
<th>Approve Status</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>{{ $approverName }}</td>
|
|
<td style="text-align: center;">
|
|
<a href="{{ $approveUrl }}">Approve</a> |
|
|
<a href="{{ $holdUrl }}">Hold</a> |
|
|
<a href="{{ $rejectUrl }}">Reject</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p>{!! $wishes !!}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|