30 lines
813 B
PHP
30 lines
813 B
PHP
<!DOCTYPE html>
|
|
<html class="no-js css-menubar" lang="{{ app()->getLocale() }}">
|
|
<head>
|
|
@include('admin.includes.head')
|
|
<title>@yield('pageTitle') | {{ config('app.name', 'E-DMS') }}</title>
|
|
</head>
|
|
<body class="animsition ecommerce_dashboard">
|
|
<!--[if lt IE 8]>
|
|
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
|
<![endif]-->
|
|
|
|
<!-- NAVBAR -->
|
|
@include('admin.includes.header')
|
|
<!-- NAVBAR -->
|
|
|
|
<!-- LEFT NAVIGATION -->
|
|
@include('admin.includes.sidebar')
|
|
<!-- LEFT NAVIGATION -->
|
|
|
|
<!-- PAGE BODY -->
|
|
<div class="page">
|
|
@yield('content')
|
|
</div>
|
|
|
|
<!-- FOOTER -->
|
|
@include('admin.includes.footer')
|
|
<!-- FOOTER -->
|
|
@include('admin.includes.script')
|
|
</body>
|
|
</html> |