PHP Classes

File: src/views/_template.blade.php

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Laravel Local Email Sender   src/views/_template.blade.php   Download  
File: src/views/_template.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Local Email Sender
Send email messages to logs that can be viewed
Author: By
Last change:
Date: 8 months ago
Size: 899 bytes
 

Contents

Class file image Download
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="LocalMailer">
    <meta name="author" content="yzen.dev">
    <title>Local Mailer</title>
    {{-- Styles --}}
    <link href="/{{app()['config']->get('local-mailer.route.prefix', 'local-mailer')}}/resource/css/styles.css" rel="stylesheet">
</head>
<body>

<div class="container">
    @yield('content')

    {{--<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
        <p class="mb-0 text-muted">
            LocalMailer - <span class="badge bg-info text-dark">version 0.1</span>
        </p>

        <div class="justify-content-end">
            yzen.dev <sup>&copy;</sup>
        </div>
    </footer>--}}
</div>

</body>
</html>