One Hat Cyber Team
Your IP:
216.73.216.176
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
thread-self
/
root
/
proc
/
self
/
cwd
/
Edit File:
cblog.tar
index.blade.php 0000644 00000007546 15111421474 0007446 0 ustar 00 @extends('layouts.admin') @section('content') <div class="card"> <div class="d-sm-flex align-items-center justify-content-between"> <h5 class=" mb-0 text-gray-800 pl-3">{{ __('Categories') }}</h5> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="javascript:;">{{ __('Manage Blog') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.cblog.index') }}">{{ __('Categories') }}</a></li> </ol> </div> </div> <div class="row mt-3"> <div class="col-lg-12"> @include('includes.admin.form-success') <div class="card mb-4"> <div class="table-responsive p-3"> <table id="geniustable" class="table table-hover dt-responsive" cellspacing="0" width="100%"> <thead class="thead-light"> <tr> <th>{{ __('Name') }}</th> <th>{{ __('Slug') }}</th> <th>{{ __('Options') }}</th> </tr> </thead> </table> </div> </div> </div> </div> <div class="modal fade confirm-modal" id="statusModal" tabindex="-1" role="dialog" aria-labelledby="statusModalTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">{{ __("Update Status") }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p class="text-center">{{ __("You are about to change the status.") }}</p> <p class="text-center">{{ __("Do you want to proceed?") }}</p> </div> <div class="modal-footer"> <a href="javascript:;" class="btn btn-secondary" data-dismiss="modal">{{ __("Cancel") }}</a> <a href="javascript:;" class="btn btn-success btn-ok">{{ __("Update") }}</a> </div> </div> </div> </div> {{-- STATUS MODAL ENDS --}} {{-- DELETE MODAL --}} <div class="modal fade confirm-modal" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="deleteModalTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">{{ __("Confirm Delete") }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p class="text-center">{{__("You are about to delete this Category. Every informtation under this category will be deleted.")}}</p> <p class="text-center">{{ __("Do you want to proceed?") }}</p> </div> <div class="modal-footer"> <a href="javascript:;" class="btn btn-secondary" data-dismiss="modal">{{ __("Cancel") }}</a> <a href="javascript:;" class="btn btn-danger btn-ok">{{ __("Delete") }}</a> </div> </div> </div> </div> @endsection @section('scripts') <script type="text/javascript"> "use strict"; var table = $('#geniustable').DataTable({ ordering: false, processing: true, serverSide: true, searching: true, ajax: '{{ route('admin.cblog.datatables') }}', columns: [ { data: 'name', name: 'name' }, { data: 'slug', name: 'slug' }, { data: 'action', searchable: false, orderable: false } ], language: { processing: '<img src="{{asset('assets/images/'.$gs->admin_loader)}}">' } }); $(function() { $(".btn-area").append('<div class="col-sm-12 col-md-4 pr-3 text-right">'+ '<a class="btn btn-primary" href="{{route('admin.cblog.create')}}">'+ '<i class="fas fa-plus"></i> {{__('Add New Category')}}'+ '</a>'+ '</div>'); }); </script> @endsection create.blade.php 0000644 00000004772 15111421474 0007600 0 ustar 00 @extends('layouts.admin') @section('content') <div class="card"> <div class="d-sm-flex align-items-center justify-content-between"> <h5 class=" mb-0 text-gray-800 pl-3">{{ __('Add New Category') }} <a class="btn btn-primary btn-rounded btn-sm" href="{{route('admin.cblog.index')}}"><i class="fas fa-arrow-left"></i> {{ __('Back') }}</a></h5> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="javascript:;">{{ __('Manage Blog') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.cblog.index') }}">{{ __('Categories') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.cblog.create') }}">{{ __('Add New Category') }}</a></li> </ol> </div> </div> <div class="row justify-content-center mt-3"> <div class="col-md-10"> <!-- Form Basic --> <div class="card mb-4"> <div class="card-header py-3 d-flex flex-row align-items-center justify-content-between"> <h6 class="m-0 font-weight-bold text-primary">{{ __('Add New Category Form') }}</h6> </div> <div class="card-body"> <div class="gocover" style="background: url({{asset('assets/images/'.$gs->admin_loader)}}) no-repeat scroll center center rgba(45, 45, 45, 0.5);"></div> <form class="geniusform" action="{{route('admin.cblog.store')}}" method="POST" enctype="multipart/form-data"> @include('includes.admin.form-both') {{ csrf_field() }} <div class="form-group"> <label for="inp-name">{{ __('Name') }}</label> <input type="text" class="form-control" id="inp-name" name="name" placeholder="{{ __('Enter Name') }}" value="" required> </div> <div class="form-group"> <label for="inp-slug">{{ __('Slug') }}</label> <input type="text" class="form-control" id="inp-slug" name="slug" placeholder="{{ __('Enter Slug') }}" value="" required> </div> <div class="form-group "> <label for="exampleInputPassword1">{{__("category Color")}}</label> <input type="color" name="colors" required class="form-control" value="" id="exampleInputPassword1"> </div> <button type="submit" id="submit-btn" class="btn btn-primary w-100">{{ __('Submit') }}</button> </form> </div> </div> </div> </div> @endsection edit.blade.php 0000644 00000005071 15111421474 0007253 0 ustar 00 @extends('layouts.admin') @section('content') <div class="card"> <div class="d-sm-flex align-items-center justify-content-between"> <h5 class=" mb-0 text-gray-800 pl-3">{{ __('Edit Category') }} <a class="btn btn-primary btn-rounded btn-sm" href="{{route('admin.cblog.index')}}"><i class="fas fa-arrow-left"></i> {{ __('Back') }}</a></h5> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="javascript:;">{{ __('Manage Blog') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.cblog.index') }}">{{ __('Categories') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.cblog.edit',$data->id) }}">{{ __('Edit Category') }}</a></li> </ol> </div> </div> <div class="row justify-content-center mt-3"> <div class="col-md-10"> <!-- Form Basic --> <div class="card mb-4"> <div class="card-header py-3 d-flex flex-row align-items-center justify-content-between"> <h6 class="m-0 font-weight-bold text-primary">{{ __('Edit Category Form') }}</h6> </div> <div class="card-body"> <div class="gocover" style="background: url({{asset('assets/images/'.$gs->admin_loader)}}) no-repeat scroll center center rgba(45, 45, 45, 0.5);"></div> <form class="geniusform" action="{{route('admin.cblog.update',$data->id)}}" method="POST" enctype="multipart/form-data"> @include('includes.admin.form-both') {{ csrf_field() }} <div class="form-group"> <label for="inp-name">{{ __('Name') }}</label> <input type="text" class="form-control" id="inp-name" name="name" placeholder="{{ __('Enter Name') }}" value="{{ $data->name }}" required> </div> <div class="form-group"> <label for="inp-slug">{{ __('Slug') }}</label> <input type="text" class="form-control" id="inp-slug" name="slug" placeholder="{{ __('Enter Slug') }}" value="{{ $data->slug }}" required> </div> <div class="form-group "> <label for="exampleInputPassword1">{{__("category Color")}}</label> <input type="color" name="colors" required class="form-control" value="{{ $data->colors }}" id="exampleInputPassword1"> </div> <button type="submit" id="submit-btn" class="btn btn-primary w-100">{{ __('Submit') }}</button> </form> </div> </div> </div> </div> @endsection
Simpan