migrate to gtea from bistbucket
This commit is contained in:
35
resources/views/layouts/master.blade.php
Normal file
35
resources/views/layouts/master.blade.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
@if (app()->getLocale() == 'ar')
|
||||
<html lang="ar" dir="rtl">
|
||||
@else
|
||||
<html lang="en" dir="auto">
|
||||
@endif
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="{{__('IE=edge')}}">
|
||||
<meta name="viewport" content="{{__('width=device-width, initial-scale=1.0')}}">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<title>@hasSection('title') @yield('title') | @endif {{ get_option('general')['title'] ?? config('app.name') }}</title>
|
||||
@include('layouts.partials.css')
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Side Bar Start -->
|
||||
@include('layouts.partials.side-bar')
|
||||
<!-- Side Bar End -->
|
||||
<div class="section-container">
|
||||
<!-- header start -->
|
||||
@include('layouts.partials.header')
|
||||
<!-- header end -->
|
||||
<!-- erp-state-overview-section start -->
|
||||
<div class="min-h-100vh">
|
||||
@yield('main_content')
|
||||
</div>
|
||||
@include('layouts.partials.footer')
|
||||
<!-- erp-state-overview-section end -->
|
||||
@stack('modal')
|
||||
</div>
|
||||
|
||||
@include('layouts.partials.script')
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user