@extends('layouts.admin') @section('content')
id) }}" id="adjustmentEntryForm" enctype="multipart/form-data"> @method('PUT') @csrf
{{ trans('global.edit') }} {{ trans('cruds.adjustmentEntry.title_singular') }}
@if($errors->has('sat_id'))
{{ $errors->first('sat_id') }}
@endif {{ trans('cruds.adjustmentEntry.fields.adjustment_type_helper') }}
@if($errors->has('supplier_id'))
{{ $errors->first('supplier_id') }}
@endif {{ trans('cruds.adjustmentEntry.fields.supplier_helper') }}
@can('isWarehouse')
@else
@if($errors->has('warehouse_id'))
{{ $errors->first('warehouse_id') }}
@endif {{ trans('cruds.adjustmentEntry.fields.warehouse_helper') }}
@endcan
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.adjustmentEntry.fields.date_helper') }}
@if($errors->has('remark'))
{{ $errors->first('remark') }}
@endif {{ trans('cruds.adjustmentEntry.fields.remark_helper') }}
{{ trans('cruds.adjustmentEntry.title_singular') }} Record
@forelse($adjustmentEntry->adjustmentEntryData as $key => $data) @empty @endforelse
# Name In Qty Out Qty Remark
{{ $key + 1 }} {{ $data->product ? $data->product->product_name : 'Unknown Product Name' }} @error('adjustment-entry-products.' . $data->id . '.in_qty') {{ $message }} @enderror @error('adjustment-entry-products.' . $data->id . '.out_qty') {{ $message }} @enderror @error('adjustment-entry-products.' . $data->id . '.remark') {{ $message }} @enderror
No product available in table
@endsection