@extends('layouts.admin') @section('page-title') {{__('Manage Allowance Option')}} @endsection @section('breadcrumb') @endsection @section('action-btn')
@can('create allowance option') @endcan
@endsection @section('content')
@include('layouts.hrm_setup')
@foreach ($allowanceoptions as $allowanceoption) @endforeach
{{__('Allowance Option')}} {{__('Action')}}
{{ $allowanceoption->name }} @can('edit allowance option') @endcan @can('delete allowance option')
{!! Form::open(['method' => 'DELETE', 'route' => ['allowanceoption.destroy', $allowanceoption->id],'id'=>'delete-form-'.$allowanceoption->id]) !!} {!! Form::close() !!}
@endcan
@endsection