@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@include('include.message') @include('admin.tax-rates.search')
@foreach ($taxRates as $key => $value) @endforeach
{{ __('ID') }} {{ __('Name') }} {{ __('Tax rate') }} {{ __('Status') }} {{ __('Action') }}
{{ $value->id }} {{ $value->name }} {{ number_format($value->percentage, 2, __('.'), __(',')) }}% {{ ($value->type ? __('Exclusive') : __('Inclusive')) }}
status == 1 ? 'checked' : '' }}>
{{ __('ID') }} {{ __('Name') }} {{ __('Type') }} {{ __('Status') }} {{ __('Action') }}
@endsection