2020-01-15 20:59:21 +03:00

130 lines
6.8 KiB
PHP

@extends('layouts.wizard')
@section('title', trans('general.wizard'))
@section('content')
<div class="card">
@include('partials.wizard.steps')
<div class="card-body border-bottom-0">
<div class="row">
<div class="col-12 text-right">
<span>
<button type="button" @click="onAddTax" class="btn btn-success btn-sm">
<span class="fa fa-plus"></span> &nbsp;{{ trans('general.add_new') }}
</button>
</span>
</div>
</div>
</div>
<div class="table-responsive">
{!! Form::open([
'route' => 'wizard.taxes.store',
'id' => 'tax',
'@submit.prevent' => 'onSubmit',
'@keydown' => 'form.errors.clear($event.target.name)',
'files' => true,
'role' => 'form',
'class' => 'form-loading-button mb-0',
'novalidate' => true
]) !!}
<table class="table table-flush table-hover" id='tbl-taxes'>
<thead class="thead-light">
<tr class="row table-head-line">
<th class="col-xs-4 col-sm-3">@sortablelink('name', trans('general.name'))</th>
<th class="col-sm-3 hidden-sm">@sortablelink('rate', trans('taxes.rate_percent'))</th>
<th class="col-xs-4 col-sm-3">@sortablelink('enabled', trans('general.enabled'))</th>
<th class="col-xs-4 col-sm-3 text-center">{{ trans('general.actions') }}</th>
</tr>
</thead>
<tbody>
@foreach($taxes as $item)
<tr class="row align-items-center border-top-1" id="tax-{{ $item->id }}">
<td class="col-xs-4 col-sm-3 tax-name">
<a href="javascript:void(0);" class="text-success" @click="onEditTax('{{ $item->id }}')">
{{ $item->name }}
</a>
</td>
<td class="col-sm-3 hidden-sm">{{ $item->rate }}</td>
<td class="col-xs-4 col-sm-3">
@if (user()->can('update-settings-taxes'))
{{ Form::enabledGroup($item->id, $item->name, $item->enabled) }}
@else
@if ($item->enabled)
<badge rounded type="success">{{ trans('general.enabled') }}</badge>
@else
<badge rounded type="danger">{{ trans('general.disabled') }}</badge>
@endif
@endif
</td>
<td class="col-xs-4 col-sm-3 text-center">
<div class="dropdown">
<a class="btn btn-neutral btn-sm text-light items-align-center py-2" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-h text-muted"></i>
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
<button type="button" class="dropdown-item" @click="onEditTax('{{ $item->id }}')">
{{ trans('general.edit') }}
</button>
@permission('delete-settings-taxes')
<div class="dropdown-divider"></div>
{!! Form::deleteLink($item, 'wizard/taxes') !!}
@endpermission
</div>
</div>
</td>
</tr>
@endforeach
<tr class="row align-items-center border-top-1" v-show="show">
<td class="col-xs-4 col-sm-3 tax-name">
{{ Form::textGroup('name', trans('general.name'), 'font', [], null, '') }}
</td>
<td class="col-sm-3 hidden-sm tax-rate">
{{ Form::textGroup('rate', trans('currencies.rate'), 'percentage', ['required' => 'required'], null, '') }}
</td>
<td class="col-xs-4 col-sm-3 tax-status">
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
</td>
<td class="col-xs-4 col-sm-3 text-center">
{!! Form::button(
'<span class="btn-inner--icon"><i class="fas fa-save"></i></span>', [
':disabled' => 'form.loading',
'type' => 'submit',
'class' => 'btn btn-success',
'data-loading-text' => trans('general.loading'),
]) !!}
</td>
</tr>
</tbody>
</table>
<input type="hidden" name="bulk_action_path" value="settings/taxes" />
{!! Form::close() !!}
</div>
<div class="card-footer">
<div class="row">
<div class="col-md-6">
<a href="{{ url('wizard/currencies') }}" class="btn btn-white header-button-top">
<span class="fas fa-arrow-left"></span> &nbsp;{{ trans('modules.back') }}
</a>
</div>
<div class="col-md-6 text-right">
<a href="{{ url('wizard/finish') }}" id="wizard-skip" class="btn btn-white header-button-top" @click="next">
<span class="fas fa-arrow-right"></span> &nbsp;{{ trans('general.skip') }}
</a>
</div>
</div>
</div>
</div>
@endsection
@push('scripts_start')
<script type="text/javascript">
var taxes = {!! json_encode($taxes->items()) !!}
</script>
<script src="{{ asset('public/js/wizard/taxes.js?v=' . version('short')) }}"></script>
@endpush