common.blade.php 430 B

123456789101112131415161718
  1. @extends('emails.layout')
  2. @section('title')邮件通知@endsection
  3. @section('content')
  4. <table width="100%" cellpadding="0" cellspacing="0">
  5. <tr>
  6. <td class="content-block">
  7. {!! $body !!}
  8. </td>
  9. </tr>
  10. <tr>
  11. <td class="content-block">
  12. &mdash; {{ Setting()->get('website_name') }}
  13. </td>
  14. </tr>
  15. </table>
  16. @endsection