@extends('admin.layout.master')
@section('home')
{{ Session::get('message') }}
| # |
Name |
Leader Name |
team_code |
Location |
Status |
Action |
@if (!empty($allteam))
@php($i = 1)
@foreach ($allteam as $item)
| {{ $i++ }} |
{{ $item->name }} |
{{ $item->leader_name }} |
{{ $item->team_code }} |
@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.team_settings.form.add_team_settings')
@endsection