Files
pds/resources/views/approval/already-processed.blade.php
dhanabalan 1e612a1452
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 12s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 26s
Laravel Pint / pint (pull_request) Successful in 5m56s
Laravel Larastan / larastan (pull_request) Failing after 7m17s
Added all blade files of approval mails
2026-01-28 15:28:29 +05:30

92 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Action Already Taken</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f6f8;
margin: 0;
padding: 0;
}
.container {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background: #ffffff;
width: 420px;
padding: 30px;
border-radius: 8px;
text-align: center;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.icon {
font-size: 50px;
margin-bottom: 10px;
color: #ff9800;
}
h2 {
margin: 10px 0;
color: #333;
}
.status {
margin-top: 15px;
padding: 10px;
border-radius: 6px;
font-weight: bold;
font-size: 16px;
}
.status.Approved {
background-color: #e8f5e9;
color: #2e7d32;
}
.status.Hold {
background-color: #fff3e0;
color: #ef6c00;
}
.status.Rejected {
background-color: #fdecea;
color: #c62828;
}
.note {
margin-top: 15px;
font-size: 14px;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="icon">⚠️</div>
<h2>Action Already Taken</h2>
<div class="status {{ $status }}">
Status: {{ $status }}
</div>
<p class="note">
This request has already been processed.<br>
No further action is required.
</p>
</div>
</div>
</body>
</html>