@extends('layouts.master') @section('title',__('index.termination_types')) @section('action',__('index.lists')) @section('button') @can('create_termination_type') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.terminationManagement.types.common.breadcrumb')
@lang('index.termination_type_filter')
@if(!isset(auth()->user()->branch_id))
@endif
@lang('index.reset')
{{ __('index.termination_type_lists') }}
@canany(['update_termination_type','delete_termination_type']) @endcanany @forelse($terminationTypes as $key => $value) @empty @endforelse
# {{ __('index.name') }} {{ __('index.total_termination') }} {{ __('index.status') }}{{ __('index.action') }}
{{++$key}} {{ucfirst($value->title)}} {{$value->terminations_count}}
    @can('update_termination_type')
  • @endcan @can('delete_termination_type')
  • @endcan

{{ __('index.no_records_found') }}

@endsection @section('scripts') @include('admin.terminationManagement.types.common.scripts') @endsection