@extends('layouts/acc_layout') @section('title', '| Bill Type') @section('content')

VAT BILL TYPE LIST

@php $count=1; @endphp @foreach($viewVatBillTypes as $viewVatBillType) @php $count++; @endphp @endforeach
SL# Name Code VAT Rate (%) Active From Status Action
{{$count}} {{$viewVatBillType->serviceName}} {{$viewVatBillType->serviceCode}} {{$viewVatBillType->vatRate}}% {{Carbon::parse($viewVatBillType->activeFrom)->format('d-m-Y')}} @if($viewVatBillType->status==0) @else @endif    
{{-- View Modal --}} {{-- End View Modal --}} {{-- Edit Modal --}} {{-- End Edit Modal --}} {{-- Delete Modal --}} {{-- End Delete Modal --}} @include('dataTableScript') @endsection