관리-도구
편집 파일: admin_approval.blade.php
<p>Dear Admin,</p> <p>A new company has registered with the following details:</p> <ul> <li>Company Name: {{ $user->name }}</li> <li>Email: {{ $user->email }}</li> </ul> <p>Click below to take action:</p> <p> <a href="{{ route('admin.approve_user', ['id' => $user->id, 'action' => 'approve']) }}" style="padding: 10px 15px; color: white; background-color: green; text-decoration: none; border-radius: 5px;"> Approve </a> <a href="{{ route('admin.approve_user', ['id' => $user->id, 'action' => 'disapprove']) }}" style="padding: 10px 15px; color: white; background-color: red; text-decoration: none; border-radius: 5px;"> Disapprove </a> </p>