@extends('admin.layouts.master-soyuz') @section('title',__('Tax rates | ')) @section('body') @component('admin.component.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('Tax rates') }} @endslot @slot('menu1') {{ __('Tax rates') }} @endslot @slot('button')
@endslot @endcomponent{{__("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.") }}