⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
erp.dev-unit.com
/
resources
/
views
/
layouts
/
View File Name :
main.blade.php
@php $admin_settings = getAdminAllSetting(); $company_settings = getCompanyAllSetting(creatorId()); $color = !empty($company_settings['color']) ? $company_settings['color'] : 'theme-1'; if (isset($company_settings['color_flag']) && $company_settings['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } @endphp <!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="{{ isset($company_settings['site_rtl']) && $company_settings['site_rtl'] == 'on' ? 'rtl' : '' }}"> @include('partials.head') <body class="{{ isset($themeColor) ? $themeColor : 'theme-1' }}"> <div class="loader-bg"> <div class="loader-track"> <div class="loader-fill"> </div> </div> </div> <!-- [ Pre-loader ] End --> <!-- [ auth-signup ] end --> @include('partials.sidebar') @include('partials.header') <section class="dash-container"> <div class="dash-content"> <!-- [ breadcrumb ] start --> <div class="page-header"> <div class="page-block"> <div class="d-flex flex-wrap gap-3 align-items-center justify-content-between"> <div> <div class="page-header-title"> <h4 class="mb-2">@yield('page-title')</h4> </div> <ul class="breadcrumb"> @php if (isset(app()->view->getSections()['page-breadcrumb'])) { $breadcrumb = explode(',', app()->view->getSections()['page-breadcrumb']); } else { $breadcrumb = []; } @endphp @if (!empty($breadcrumb)) <li class="breadcrumb-item"><a href="{{ route('dashboard') }}">{{ __('Dashboard') }}</a></li> @foreach ($breadcrumb as $item) <li class="breadcrumb-item {{ $loop->last ? 'active' : '' }}"> {{ $item }}</li> @endforeach @endif </ul> </div> <div> @yield('page-action') </div> </div> </div> </div> @yield('content') </div> </section> @include('partials.footer')