PHP Classes

File: resources/views/master.blade.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Simple Laravel Ecommerce   resources/views/master.blade.php   Download  
File: resources/views/master.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Simple Laravel Ecommerce
E-commerce application to expose seller products
Author: By
Last change:
Date: 1 month ago
Size: 670 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Ecommerce Project</title>
<link rel="stylesheet" href="{{asset('css/all.css?ver=').md5(rand(0,000000).time())}}">
    <link rel="stylesheet" href="{{asset('css/app.css?ver=').md5(rand(0,000000).time())}}">
    <script src="{{asset('js/all.js?ver=').md5(rand(0,000000).time())}}"></script>
    <script src="{{asset('js/app.js?ver=').md5(rand(0,000000).time())}}"></script>
</head>
<body>
@include('header')
@yield('content')
@include('footer')
</body>
</html>