|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/tax_rate/ |
Upload File : |
@extends('layouts.app')
@section('title', __( 'tax_rate.tax_rates' ))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>@lang( 'tax_rate.tax_rates' )
<small>@lang( 'tax_rate.manage_your_tax_rates' )</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
@component('components.widget', ['class' => 'box-primary', 'title' => __( 'tax_rate.all_your_tax_rates' )])
@can('tax_rate.create')
@slot('tool')
<div class="box-tools">
<button type="button" class="btn btn-block btn-primary btn-modal"
data-href="{{action([\App\Http\Controllers\TaxRateController::class, 'create'])}}"
data-container=".tax_rate_modal">
<i class="fa fa-plus"></i> @lang( 'messages.add' )</button>
</div>
@endslot
@endcan
@can('tax_rate.view')
<div class="table-responsive">
<table class="table table-bordered table-striped" id="tax_rates_table">
<thead>
<tr>
<th>@lang( 'tax_rate.name' )</th>
<th>@lang( 'tax_rate.rate' )</th>
<th>@lang( 'messages.action' )</th>
</tr>
</thead>
</table>
</div>
@endcan
@endcomponent
@component('components.widget', ['class' => 'box-primary'])
@slot('title')
@lang( 'tax_rate.tax_groups' ) ( @lang('lang_v1.combination_of_taxes') ) @show_tooltip(__('tooltip.tax_groups'))
@endslot
@can('tax_rate.create')
@slot('tool')
<div class="box-tools">
<button type="button" class="btn btn-block btn-primary btn-modal"
data-href="{{action([\App\Http\Controllers\GroupTaxController::class, 'create'])}}"
data-container=".tax_group_modal">
<i class="fa fa-plus"></i> @lang( 'messages.add' )</button>
</div>
@endslot
@endcan
@can('tax_rate.view')
<div class="table-responsive">
<table class="table table-bordered table-striped" id="tax_groups_table">
<thead>
<tr>
<th>@lang( 'tax_rate.name' )</th>
<th>@lang( 'tax_rate.rate' )</th>
<th>@lang( 'tax_rate.sub_taxes' )</th>
<th>@lang( 'messages.action' )</th>
</tr>
</thead>
</table>
</div>
@endcan
@endcomponent
<div class="modal fade tax_rate_modal" tabindex="-1" role="dialog"
aria-labelledby="gridSystemModalLabel">
</div>
<div class="modal fade tax_group_modal" tabindex="-1" role="dialog"
aria-labelledby="gridSystemModalLabel">
</div>
</section>
<!-- /.content -->
@endsection