@extends('layouts.main') @section('page-title') {{ __('Manage Tax Thresholds') }} @endsection @section('page-breadcrumb') {{ __('Tax Thresholds') }} @endsection @section('page-action')
@permission('tax threshold create') @endpermission
@endsection @section('content')
@include('hrm::layouts.hrm_setup')
@if (Laratrust::hasPermission('tax threshold edit') || Laratrust::hasPermission('tax threshold delete')) @endif @forelse ($taxthresholds as $taxthreshold) @if (Laratrust::hasPermission('tax threshold edit') || Laratrust::hasPermission('tax threshold delete')) @endif @empty @include('layouts.nodatafound') @endforelse
{{ __('Description') }} {{ __('Amount') }}{{ __('Action') }}
{{ $taxthreshold->description }} {{ $taxthreshold->amount }} @permission('tax threshold edit') @endpermission @permission('tax threshold delete')
{{Form::open(array('route'=>array('taxthreshold.destroy', $taxthreshold->id),'class' => 'm-0'))}} @method('DELETE') {{Form::close()}}
@endpermission
@endsection