@extends('layouts.admin') @section('page-title') {{__('Manage Tax Rate')}} @endsection @section('breadcrumb') @endsection @section('action-btn')
@can('create constant tax') @endcan
@endsection @section('content')
@include('layouts.account_setup')
@foreach ($taxes as $taxe) @endforeach
{{__('Tax Name')}} {{__('Rate %')}} {{__('Action')}}
{{ $taxe->name }} {{ $taxe->rate }} @can('edit constant tax') @endcan @can('delete constant tax')
{!! Form::open(['method' => 'DELETE', 'route' => ['taxes.destroy', $taxe->id],'id'=>'delete-form-'.$taxe->id]) !!} {!! Form::close() !!}
@endcan
@endsection