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