@extends('layouts.admin') @section('title', $pageTitle) @section('content') @include('include.admin.toast')

@include('admin.taxrate.search')
@forelse ($taxrates as $taxrate) @empty @endforelse
{{ __('SR No') }} {{ __('Name') }} {{ __('Tax rate') }} {{ __('Status') }} {{ __('Action') }}
{{ $taxrates->firstItem() + $loop->index }} {{ $taxrate->name }} {{ number_format($taxrate->percentage, 2, __('.'), __(',')) }}% {{ $taxrate->type ? __('Exclusive') : __('Inclusive') }}
status == 1 ? 'checked' : '' }}>
{{ __('Edit') }}
{{ __('No Records Found') }}
@if ($taxrates->hasPages())
{{ $taxrates->links('pagination::bootstrap-5') }}
@endif
@endsection