관리-도구
편집 파일: 5ff24c0cca3927f926f55a6be87ab32c.php
<!DOCTYPE html> <html> <head> <title><?php echo e(config('app.name')); ?></title> <style> body { font-family: Arial, sans-serif; background-color: #f7f7f7; margin: 0; padding: 0; } .container { width: 100%; max-width: 600px; margin: 0 auto; background-color: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .header { background-color: #4CAF50; color: white; padding: 5px 0; text-align: center; border-radius: 8px 8px 0 0; } .content { padding: 20px; } .button { display: inline-block; padding: 10px 20px; margin: 20px 0; background-color: #4CAF50; color: white; text-decoration: none; border-radius: 5px; color: white !important } </style> </head> <body> <div class="container"> <div class="header"> <h1> <?php echo e(translate('Welcome to')); ?> <?php echo e(config('app.name')); ?></h1> </div> <div class="content"> <?php echo clean($data['message']); ?> <p> <?php echo e(translate('Best Regards')); ?> <?php echo e(config('app.name')); ?> <?php echo e(translate('Team')); ?></p> </div> </div> </body> </html> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\mail\notices.blade.php ENDPATH**/ ?>