Server IP : 66.29.132.124 / Your IP : 18.223.171.83 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/Core/Views/admin/plugins/ |
Upload File : |
@extends('admin.layouts.app') @section('content') <div class="container-fluid"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar">{{__("All Plugins")}}</h1> </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.plugins.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="active">{{__("Active")}}</option> <option value="deactivate">{{__("Deactivate")}}</option>--}} </select> <button class="btn-info btn btn-icon dungdt-apply-form-btn" type="button">{{__('Apply')}}</button> </form> @endif </div> {{--<div class="col-left"> <form method="get" action="{{route('core.admin.plugins.index')}} " class="filter-form filter-form-right d-flex justify-content-end flex-column flex-sm-row" role="search"> <input type="text" name="s" value="{{ Request()->s }}" placeholder="{{__('Search by name')}}" class="form-control"> <button class="btn-info btn btn-icon btn_search" type="submit">{{__('Search')}}</button> </form> </div>--}} </div> <div class="panel"> <div class="panel-body"> <form action="" class="bravo-form-item"> <div class="table-responsive"> <table class="table table-hover"> <thead> <tr> <th width="60px"><input type="checkbox" class="check-all"></th> <th width="200px"> {{ __('Plugin name')}}</th> <th > {{ __('Description')}}</th> <th width="130px"> {{ __('Author')}}</th> <th width="100px"> {{ __('Version')}}</th> {{--<th width="100px"> {{ __('Status')}}</th>--}} </tr> </thead> <tbody> @if(!empty($rows)) @foreach($rows as $key=>$row) <tr class="{{$row['module_name']}}"> <td><input type="checkbox" name="ids[]" class="check-item" value="{{$row['module_name']}}"> </td> <td class="title"> <a href="#">{{$row['title']}}</a> </td> <td> {{$row['desc']}} </td> <td> {{$row['author']}} </td> <td> {{$row['version']}} </td> {{--<td><span class="badge badge-{{ $row['status'] }}">{{ $row['status'] }}</span></td>--}} </tr> @endforeach @else <tr> <td colspan="7">{{__("No Plugin found")}}</td> </tr> @endif </tbody> </table> </div> </form> </div> </div> </div> @endsection