@extends('layouts.master') @section('title', 'Add Material Stock') @section('body') @endsection @section('content')

Add Material Stock

{{-- Product Filter --}}
{{-- If stock exists, show table --}} @if(isset($materialStock) && count($materialStock) > 0)

Material Stock List

@foreach($materialStock as $index => $stock) @endforeach
# Product Name Qty Actions
{{ $index + 1 }} {{ $stock->product->product_name }} ({{ $stock->product->product_brands->product_brand_name }}) {{ $stock->qty }}
@csrf @method('DELETE')
{{-- If no stock found, show Add Qty form --}} @elseif(request('product_id'))
No stock found for this product. Add new stock below:
@csrf
@endif
{{-- Edit Qty Modal --}} @endsection @section('scripts') @endsection