@extends("admin/layouts.master") @section('title','Tax rates | ') @section("body")

Tax Rate

@foreach($taxs as $tax) @endforeach
ID Tax Name Zone Rate Type Action
{{$i++}} {{$tax->name}} @php $zonename = App\Zone::where('id','=',$tax->zone_id)->first(); @endphp {{ $zonename ? $zonename : 'No Zone Found !' }} {{$tax->rate}} @if($tax->type == 'p') {{'Percentage'}} @else($tax->type == 'f') {{'Fix Amount'}} @endif
@foreach($taxs as $tax) @endforeach @endsection