@extends('admin.layout.master')
@section('content')
@include('flash-message')
| {{__('obs.sl')}} |
{{__('obs.name')}} |
{{__('obs.description')}} |
{{__('obs.status')}} |
{{__('obs.action')}} |
@if (!empty($allincrement))
@php($i = 1)
@foreach ($allincrement as $item)
| {{ $i++ }} |
{{ $item->name }} |
{{ $item->description }} |
@if ($item->status == 1)
{{__('obs.active')}}
|
@else
{{__('obs.inactive')}}
|
@endif
{{-- --}}
|
@endforeach
@endif
@include('payroll.admin.settings.incrementtype.form.add_incrementtype')
@endsection