PATH:
home
/
lab2454c
/
.trash
/
core
/
resources
/
views
/
admin
/
gateway_manual
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <div class="table-responsive--sm table-responsive"> <table class="table table--light style--two custom-data-table"> <thead> <tr> <th>@lang('Gateway')</th> <th>@lang('Status')</th> <th>@lang('Action')</th> </tr> </thead> <tbody> @forelse($gateways as $gateway) <tr> <td data-label="@lang('Gateway')"> <div class="user"> <div class="thumb"><img src="{{ getImage(imagePath()['gateway']['path'].'/'. $gateway->image,imagePath()['gateway']['size'])}}" alt="@lang('image')"></div> <span class="name">{{__($gateway->name)}}</span> </div> </td> <td data-label="@lang('Status')"> @if($gateway->status == 1) <span class="text--small badge font-weight-normal badge--success">@lang('Active')</span> @else <span class="text--small badge font-weight-normal badge--warning">@lang('Disabled')</span> @endif </td> <td data-label="@lang('Action')"> <a href="{{ route('admin.gateway.manual.edit', $gateway->alias) }}" class="icon-btn editGatewayBtn" data-toggle="tooltip" title="@lang('Edit')" data-original-title="@lang('Edit')"> <i class="la la-pencil"></i> </a> @if($gateway->status == 0) <a data-toggle="modal" href="#activateModal" class="icon-btn bg--success ml-1 activateBtn" data-code="{{$gateway->code}}" data-name="{{__($gateway->name)}}" data-original-title="@lang('Enable')"> <i class="la la-eye"></i> </a> @else <a data-toggle="modal" href="#deactivateModal" class="icon-btn bg--danger ml-1 deactivateBtn" data-code="{{$gateway->code}}" data-name="{{__($gateway->name)}}" data-original-title="@lang('Disable')"> <i class="la la-eye-slash"></i> </a> @endif </td> </tr> @empty <tr> <td class="text-muted text-center" colspan="100%">{{ __($emptyMessage) }}</td> </tr> @endforelse </tbody> </table><!-- table end --> </div> </div> </div><!-- card end --> </div> </div> {{-- ACTIVATE METHOD MODAL --}} <div id="activateModal" class="modal fade" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">@lang('Payment Method Activation Confirmation')</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="{{route('admin.gateway.manual.activate')}}" method="POST"> @csrf <input type="hidden" name="code"> <div class="modal-body"> <p>@lang('Are you sure to activate') <span class="font-weight-bold method-name"></span> @lang('method')?</p> </div> <div class="modal-footer"> <button type="button" class="btn btn--dark" data-dismiss="modal">@lang('Close')</button> <button type="submit" class="btn btn--primary">@lang('Activate')</button> </div> </form> </div> </div> </div> {{-- DEACTIVATE METHOD MODAL --}} <div id="deactivateModal" class="modal fade" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">@lang('Payment Method Disable Confirmation')</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="{{ route('admin.gateway.manual.deactivate') }}" method="POST"> @csrf <input type="hidden" name="code"> <div class="modal-body"> <p>@lang('Are you sure to disable') <span class="font-weight-bold method-name"></span> @lang('method')?</p> </div> <div class="modal-footer"> <button type="button" class="btn btn--dark" data-dismiss="modal">@lang('Close')</button> <button type="submit" class="btn btn--danger">@lang('Disable')</button> </div> </form> </div> </div> </div> @endsection @push('breadcrumb-plugins') <a class="btn btn-sm btn--primary box--shadow1 text--small" href="{{ route('admin.gateway.manual.create') }}"><i class="fa fa-fw fa-plus"></i>@lang('Add New')</a> @endpush @push('script') <script> (function ($) { "use strict"; $('.activateBtn').on('click', function () { var modal = $('#activateModal'); modal.find('.method-name').text($(this).data('name')); modal.find('input[name=code]').val($(this).data('code')); }); $('.deactivateBtn').on('click', function () { var modal = $('#deactivateModal'); modal.find('.method-name').text($(this).data('name')); modal.find('input[name=code]').val($(this).data('code')); }); })(jQuery); </script> @endpush
[-] create.blade.php
[edit]
[-] edit.blade.php
[edit]
[+]
..
[-] list.blade.php
[edit]