@extends('layouts.layoutapp')
@section('content')
Name
|
Value |
Status |
Default |
Actions |
@forelse ($taxes as $tax)
{{ $tax->name }}
|
{{ $tax->value }}%
|
{{ $tax->is_default ? 'Yes' : 'No' }}
|
{{ $tax->show_flg == 'Y' ? 'Yes' : 'No' }}
|
|
@empty
No taxes found.
|
@endforelse
@endsection
@push('scripts')
@endpush