@section('site_title', formatTitle([__('Tax rates'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Tax rates')], ]])

{{ __('Tax rates') }}

{{ __('New') }}
{{ __('Tax rates') }}
@include('shared.message') @if(count($taxRates) == 0) {{ __('No results found.') }} @else
{{ __('Name') }}
{{ __('Tax rate') }}
{{ __('Status') }}
@foreach($taxRates as $taxRate)
{{ number_format($taxRate->percentage, 2, __('.'), __(',')) }}% {{ ($taxRate->type ? __('Exclusive') : __('Inclusive')) }}
{{ ($taxRate->trashed() ? __('Disabled') : __('Active')) }}
@include('admin.tax-rates.partials.menu')
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $taxRates->firstItem(), 'to' => $taxRates->lastItem(), 'total' => $taxRates->total()]) }}
{{ $taxRates->onEachSide(1)->links() }}
@endif