@extends('crm.layouts.app') @section('styles') @endsection @section('content')
@include('crm.layouts.breadcrumb')

{{__('Tax Rates')}}

{{__('New Tax Rate')}}
@if($errors) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @foreach (@$taxRates as $taxRate) @endforeach
{{__('ID')}} {{__('Tax Rate Name')}} {{__('Rate(in %)')}} {{__('Created At')}} {{__('Updated At')}} {{__('Actions')}}
{{@$taxRate->id}} {{@$taxRate->name}} {{@$taxRate->rate}} {{__('%')}} {{@$taxRate->created_at->toDayDateTimeString()}} {{@$taxRate->updated_at->toDayDateTimeString()}} @can('update-office', User::class) {{-- SECTION Edit Modal Starts Here --}} {{-- !SECTION Edit Modal Ends here --}} @endcan @can('delete-office', User::class)
@method('DELETE') @csrf
@endcan
{{-- SECTION Add taxrate modal Starts Here --}} {{-- !SECTION ADD taxrate modal ends here --}} @endsection @section('scripts') @include('crm.office.taxrate_js') @endsection