@extends('layouts.master') @section('content')
Back to Dashboard
Add Tax
@csrf
@if(Session::has('success'))
{{ Session('success') }}
@endif @if(Session::has('error'))
{{ Session('error') }}
@endif
Taxes
@foreach($taxes as $tax) @endforeach
Description Rate (%) Action
{{ $tax->description }} {{ $tax->rate }}
@endsection