@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{__('manage performance type')}} @endsection @section('title')
{{__('Performance Type')}}
@endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@include('layouts.hrm_setup')
@foreach ($types as $type) @endforeach
{{__('Name')}} {{__('Action')}}
{{ $type->name }}
{!! Form::open(['method' => 'DELETE', 'route' => ['performanceType.destroy', $type->id],'id'=>'delete-form-'.$type->id]) !!} {!! Form::close() !!}
@endsection