@extends('laravel-crm::layouts.app')
@section('content')
@include('laravel-crm::layouts.partials.nav-settings')
{{ ucfirst(__('laravel-crm::lang.details')) }}
- {{ ucfirst(__('laravel-crm::lang.rate')) }}
- {{ $taxRate->rate }}%
- {{ ucfirst(__('laravel-crm::lang.description')) }}
- {{ $taxRate->description }}
- {{ ucfirst(__('laravel-crm::lang.default_tax_rate')) }}
- {{ $taxRate->default == 1 ? 'YES' : 'NO' }}
- {{ ucfirst(__('laravel-crm::lang.tax_type')) }}
- {{ $taxRate->tax_type }}
@can('view crm products')
{{ ucfirst(__('laravel-crm::lang.products')) }} ({{ $taxRate->products->count() }})
| {{ ucfirst(__('laravel-crm::lang.item')) }} |
{{ ucfirst(__('laravel-crm::lang.active')) }} |
@foreach($taxRate->products as $product)
| {{ $product->name }} |
{{ ($product->active == 1) ? 'YES' : 'NO' }} |
@endforeach
@endcan
@endsection