ok
Direktori : /home2/selectio/www/billingsoftwarenew/core/resources/views/admin/gateways/manual/ |
Current File : /home2/selectio/www/billingsoftwarenew/core/resources/views/admin/gateways/manual/list.blade.php |
@extends('admin.layouts.app') @section('panel') <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body p-0"> <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>{{ __($gateway->name) }}</td> <td> @php echo $gateway->statusBadge; @endphp </td> <td> <div class="button--group"> <a href="{{ route('admin.gateway.manual.edit', $gateway->alias) }}" class="btn btn-sm btn-outline--primary editGatewayBtn"> <i class="la la-pencil"></i> @lang('Edit') </a> @if ($gateway->status == Status::DISABLE) <button class="btn btn-sm btn-outline--success confirmationBtn" data-question="@lang('Are you sure to enable this gateway?')" data-action="{{ route('admin.gateway.manual.status', $gateway->id) }}"> <i class="la la-eye"></i> @lang('Enable') </button> @else <button class="btn btn-sm btn-outline--danger confirmationBtn" data-question="@lang('Are you sure to disable this gateway?')" data-action="{{ route('admin.gateway.manual.status', $gateway->id) }}"> <i class="la la-eye-slash"></i> @lang('Disable') </button> @endif </div> </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> <x-confirmation-modal /> @endsection @push('breadcrumb-plugins') <a class="btn btn-outline--primary" href="{{ route('admin.gateway.manual.create') }}"><i class="las la-plus"></i>@lang('Add New')</a> <div class="input-group w-auto search-form"> <input type="text" name="search_table" class="form-control bg--white" placeholder="@lang('Search')..."> <button class="btn btn--primary input-group-text"><i class="fa fa-search"></i></button> </div> @endpush