@extends('admin.layouts.master-soyuz') @section('title',__('Tax rates | ')) @section('body') @include('admin.layouts.topbar',$data)
| {{__("ID")}} | {{__("Tax Name")}} | {{__("Zone")}} | {{__("Rate")}} | {{__("Type")}} | {{__("Action")}} | @foreach($taxs as $key => $tax)
|---|---|---|---|---|---|
| {{$key+1}} | {{$tax->name}} | @php $zonename = App\Zone::where('id','=',$tax->zone_id)->first(); @endphp {{ $zonename ? $zonename->title : 'No Zone Found !' }} | {{$tax->rate}} | @if($tax->type == 'p') {{__('Percentage')}} @else($tax->type == 'f') {{__('Fix Amount')}} @endif |
{{ __("Do you really want to delete this Tax? This process cannot be undone.") }}