PHP Classes

File: resources/views/emails/send-contact.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Portfolio API   resources/views/emails/send-contact.blade.php   Download  
File: resources/views/emails/send-contact.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Portfolio API
API to manage the portfolio of a professional
Author: By
Last change:
Date: 0 years ago
Size: 645 bytes
 

Contents

Class file image Download

<html>
    <body>
        <div style="border: 1px solid #e6e6e6;padding: 20px; text-align: center; font-size: 18px; font-family: sans-serif;">
            <h2>Hello, {{ config('app.name') }}</h2>
            <h3>
                You've got a message from {{ $contact->name }}
                <br />
                <strong>Email: </strong> {{ $contact->email }} <br />
                <strong>Phone: </strong> {{ $contact->phone }}
            </h3>
            <hr />
            <div>
                {!! '<h3>' . $contact->subject . '</h3>' !!}
                {!! $contact->message !!}
            </div>
        </div>
    </body>
</html>