PHP Classes

File: resources/views/shop.blade.php

Recommend this page to a friend!
  Classes of Edward Paul   Flexible PHP Coupon System   resources/views/shop.blade.php   Download  
File: resources/views/shop.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Flexible PHP Coupon System
E-commerce system that supports discount coupons
Author: By
Last change:
Date: 3 years ago
Size: 1,144 bytes
 

Contents

Class file image Download
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <!-- CSRF Token -->
    <meta name="csrf-token" content="{{ csrf_token() }}">

    <title>{{ config('app.name', 'Laravel') }}</title>

    <!-- Scripts -->
    <script src="{{ asset('js/app.js') }}" defer></script>

    <!-- Fonts -->
    <link rel="dns-prefetch" href="//fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">

    <!-- Styles -->
    <link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="app">
    <shop-component></shop-component>
    <!-- Footer -->
    <footer class="page-footer font-small blue pt-4">

        <!-- Copyright -->
        <div class="footer-copyright text-center py-3">© Infinitypaul:
            <a href="https://github.com/infinitypaul/coupons"> Github Source Code</a>
            <a href="https://medium.com/@infinitypail"> My Blog</a>
        </div>
        <!-- Copyright -->

    </footer>
    <!-- Footer -->
</div>

</body>
</html>