@extends('layouts.admin') @section('title', 'Tax List') @section('content-header', 'Tax List') @section('content-actions') Add Tax @endsection @section('content')
@csrf
@foreach ($taxes as $tax) @endforeach
Branch ID Tax Type Tax Rate (%) Effective Date Actions
{{ $tax->BID }} {{ $tax->tax_type }} {{ $tax->tax_rate }} {{ $tax->effective_dd }}
@endsection @section('js') @endsection