@if($errors)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{__('ID')}} |
{{__('Tax Rate Name')}} |
{{__('Rate(in %)')}} |
{{__('Created At')}} |
{{__('Updated At')}} |
{{__('Actions')}} |
@foreach (@$taxRates as $taxRate)
{{@$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)
@endcan
|
@endforeach