@include('new_layouts.header') @include('accounting.side-menu')

{{__('Manage Tax Rate')}}

@can('create constant tax') @endcan
@include('layouts.account_setup')
@foreach ($taxes as $taxe) @endforeach
{{__('Tax Name')}} {{__('Rate %')}} {{__('Action')}}
{{ $taxe->name }} {{ $taxe->rate }}
@can('edit constant tax') @endcan
@can('delete constant tax')
{!! Form::open(['method' => 'DELETE', 'route' => ['taxes.destroy', $taxe->id],'id'=>'delete-form-'.$taxe->id]) !!} {!! Form::close() !!}
@endcan
@include('new_layouts.footer')