Manage Inventory
    
        
          
            Create New Inventory
          
            
	                    
          
            
          
          
          
              
            {{ $myinventory->links() }}
              
           
          
          
           
          
            
            @if($isOpen)
                @if($templateType == 1)
                @include('livewire.inventory.create') 
                @elseif($templateType == 2)
                @include('livewire.inventory.order-create') 
                @elseif($templateType == 3)
                @include('livewire.inventory.delivery-create') 
                @else
                
                @include('livewire.inventory.create') 
                
                @endif
            @endif
            
            
                
                        Product Name
                        Qty
                        Location
                        Info (Bin Number)
                        Rank
                        Action
                
                
                    @foreach($myinventory as $inventory)
                        
                        {{ $inventory->product->name }}
                        {{ $inventory->qty }}
                                    
                        {{ $inventory->storage_location->name }}
                                    
                        {{ $inventory->storage_info }}
                        {{ $inventory->rank }}
                        
                        
                        
                        
                        
                        
                        
                        
                    @endforeach