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