@extends('layouts.app')
@section('content')
@include('sections.setting-sidebar')
@if (user()->permission('manage_tax') == 'all')
@lang('app.add') @lang('app.new') @lang('app.tax')
@endif
# |
@lang('modules.invoices.taxName') |
@lang('modules.invoices.rate') % |
@lang('app.action') |
@forelse($taxes as $key => $tax)
{{ $key + 1 }} |
{{ strtoupper($tax->tax_name) }} |
{{ mb_ucwords($tax->rate_percent) }} |
|
@empty
@endforelse
@endsection
@push('scripts')
@endpush