@extends('layouts.admin') @section('content')

Tax Settings Add, edit , remove Tax Codes

@foreach ($TaxList as $Tax) @endforeach
TaxCode Percent Status Added At Action
{{ $Tax->TaxCode }} {{ round($Tax->TaxPercent,2) }} % @if ($Tax->Inactive == 0)

Active

@else

Deactive

@endif
{{ date('d/m/Y h:i A', strtotime($Tax->created_at)) }}
@endsection