@extends('layouts.master') @section('css') @endsection @section('title') FOC Details @endsection @section('content')
FOC Free Qty
@csrf
@isset($stockItem) @if ($stockItem->stockItemFocs->where('type', 0)->count() > 0) @foreach ($stockItem->stockItemFocs->where('type', 0) as $key => $stockItemFoc)
quantity }}>
free_qty }}>
@endforeach @else
@endif @endisset
FOC Other Item
@csrf
@isset($stockItem) @if ($stockItem->stockItemFocs->where('type', 1)->count() > 0) @foreach ($stockItem->stockItemFocs->where('type', 1) as $key => $stockItemFoc)
quantity }}>
free_qty }}>
@endforeach {{-- @else
--}} @endif @endisset
@endsection @section('script') @endsection