@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Trade Inventory'])
{{$branches->branch_name}}
[{{$branches->branch_code}}]
EDIT PRODUCT
@foreach($trade_inventory_products as $inventory_product)
@csrf
@if(isset($inventory_product->product->product_shot) && file_exists(public_path().$inventory_product->product->product_shot->path)) product photo @elseif(file_exists(public_path().'/assets/img/Product Shots/'.$inventory_product->product->brand->brand_name.'/'.$inventory_product->product->sku_code.'.png')) product photo @else product photo @endif
{{$inventory_product->product->sku_description}}
({{$inventory_product->product->size}})

{{$errors->first('selling_area')}}

{{$errors->first('bodega')}}

not_carried) ? 'checked' : '' }} >
@endforeach

@include('layouts.footers.auth.footer')
@endsection