@extends("WarehouseDashboard.layouts.dashboard.app") @section("page-nav-title")

{{__('Forms')}}

{{__('Create Forms')}}

@endsection @section("content")

{{__('Create Forms')}}

@csrf
@error("name")
{{$message}}
@enderror
@error("branch_id")
{{$message}}
@enderror

{{__('Select Items')}}

@foreach($items as $item) @endforeach
{{__('Select')}} {{__('Item Code')}} {{__('Item Name')}} {{__('Category name')}} {{__('Type')}} {{__('Unit')}} {{__('Status')}} {{__('Max Value')}} {{__('Min Value')}}
{{$item->item_code}} {{$item->name_ar}} {{$item->category->name_ar}} @if($item->Type == 1) {{__('Warehouse')}} @elseif($item->Type == 2) {{__('Operator')}} @endif @switch($item->unit) @case(1) {{__('cartoon')}} @break @case(2) {{__('shwal')}} @break @case(3) {{__('eviction')}} @break @case(4) {{__('ream')}} @break @case(5) {{__('piece')}} @break @endswitch {{$item->status ? "Active" : "Non-Active"}}
@endsection @section("scripts") @endsection