⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
work
/
modules
/
Theme
/
Views
/
admin
/
Edit File: index.blade.php
@extends('Layout::admin.app') @section("content") <div class="container"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar">{{ __('All Themes')}}</h1> <div class="title-actions"> </div> </div> @include('admin.message') <div class="row"> @foreach($rows as $theme_id=>$themeClass) <div class="col-md-4 mb-3"> <div class="card"> <img class="card-img-top" src="{{asset("themes/".$theme_id)}}{{$themeClass::$screenshot}}" alt=""> <div class="card-body"> <div class="d-flex justify-content-between align-items-center"> <h5 class="card-title">{{$themeClass::$name}}</h5> <span class="badge badge-secondary">{{$themeClass::$version}}</span> </div> <div class="d-flex justify-content-between align-items-center"> <div> @if(\Modules\Theme\ThemeManager::current() == $theme_id) <form onsubmit="return confirm('{{__("Do you want to import all demo data?")}}')" action="{{route('theme.admin.seeding',['theme'=>$theme_id])}}" method="post"> @csrf <button class="btn btn-warning"><i class="fa fa-magic"></i> {{__("Import Demo Data")}}</button> @if($time = $themeClass::lastSeederRun()) <div> <i>{{__('Last run: :date',['date'=>display_datetime($time)])}}</i> </div> @endif </form> @else <form action="{{route('theme.admin.activate',['theme'=>$theme_id])}}" method="post"> @csrf <button class="btn btn-primary">{{__("Activate")}}</button> </form> @endif </div> </div> </div> </div> </div> @endforeach </div> </div> @endsection
Simpan