@extends('admin.layouts.grid') @section('section', translate('Financial')) @section('title', translate('Buyer Taxes')) @section('create', route('admin.financial.buyer-taxes.create')) @section('container', 'container-max-xl') @section('content')
| # | {{ translate('Name') }} | {{ translate('Rate') }} | {{ translate('Countries') }} | {{ translate('Created date') }} | |
|---|---|---|---|---|---|
| {{ $tax->id }} | {{ $tax->name }} | {{ $tax->rate }}% | @if (count($tax->countries) > 3) {{ translate(':count Countries', ['count' => count($tax->countries)]) }} @else {{ implode( ', ', array_map(function ($country) { return countries($country); }, $tax->countries), ) }} @endif | {{ dateFormat($tax->created_at) }} |
|