@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 @endcomponentID | 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.