Viewing: info.blade.php
<!DOCTYPE html> <html> <head> <title>E-Mail</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <style> @import url('https://fonts.googleapis.com/css?family=Roboto'); @import url('https://fonts.googleapis.com/css?family=Poppins|Roboto'); .white-bg{ background-color: #fff; } .email-container{ max-width: 500px; padding: 15px; width: 100%; margin: auto; } .mail-logo img { max-width: 120px; width: 100%; background-color: #333; } .email-container .float-left{ float: left; } .email-container .clearfix{ clear: both; } .email-container .padding-2{ padding: 20px; } .email-container .grey-bg{ background-color: #eee; } .email-container p{ margin-bottom: 0; font-family: 'Poppins', sans-serif; } .email-container .mail-bottom{ background-color: #333; color: #fff; padding: 10px; text-align: center; font-size: 13px; } .email-container .social-media i { background-color: #fff; color: #000; height: 18px; width: 30px; text-align: center; border-radius: 50%; font-size: 18px; cursor: pointer; padding: 6px 0; margin: 7px 0 0px 7px; } .email-container .social-media i:hover{ background-color: #55ACEE; color: #fff; } .email-container .text-center{ text-align: center; } .border.email-container { border: solid 1px #ddd; } .email-container h3{ font-family: 'Roboto', sans-serif; margin: 0; } .email-container .mail-bottom a{ text-decoration: none; } </style> </head> <body> <section class="grey-bg less-padding"> <p>We're thrilled to announce that the latest issue of our magazine is now available for {{date('Y-m-d',strtotime($magazine->created_at))}}. As an active subscriber, you have immediate access to this exciting content! Discover captivating stories, insightful articles, and stunning visuals that await you in this month's edition. Your subscription ensures that you're among the first to enjoy it</p> <a href="{{route('frontend.magazineDetail',$magazine->id)}}">Click</a> </section> </body> </html>
Return