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