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