@extends('admin.layout.master')
@section('home')
{{ Session::get('message') }}
| id |
Name |
Description |
Location |
status |
Action |
@if (!empty($allincrement))
@php($i = 1)
@foreach ($allincrement as $item)
| {{ $i++ }} |
{{ $item->name }} |
{{ $item->description }} |
@if ($item->ware_house)
{{ $item->ware_house->name_eng }}
@elseif ($item->ware_id ==0)
All
@endif
|
@if ($item->status == 1)
Active
|
@else
Inactive
|
@endif
{{-- --}}
|
@endforeach
@endif
@include('payroll.admin.settings.incrementtype.form.add_incrementtype')
@endsection