@extends('layouts.master')
@section('titel', 'Tax | ')
@section('content')
@include('partials.header')
@include('partials.sidebar')
Tax |
Status |
Action |
@foreach( $taxes as $tax)
{{ $tax->name }} % |
@if($tax->status)
Active |
@else
Inactive |
@endif
|
@endforeach
@endsection
@push('js')
@endpush