@extends('layouts.master') @section('css') @section('title') {{ __('home.confirm_delivery') }} @stop @endsection @section('content')
{{ __('home.add_new_delivery_note') }}
@csrf
{{ __('home.code') }} {{ __('home.product') }} {{ __('home.qty') }} {{ __('home.actions') }}
{{ __('home.all_notes') }}
{{-- كود الإذن --}} {{-- كود المنتج التجاري --}} {{-- اسم المنتج --}} @foreach($notes as $note) {{-- كود المنتج --}} {{-- اسم المنتج --}} {{-- الكمية --}} @endforeach
# {{ __('home.code') }}{{ __('home.product_number') }}{{ __('home.product') }}{{ __('home.customer') }} {{ __('home.qty') }} {{ __('home.actions') }}
{{ $loop->iteration }} {{ $note->code }} @foreach($note->items as $item)
{{ $item->product->Product_Code ?? 'N/A' }}
@endforeach
@foreach($note->items as $item)
{{ $item->product->product_name ?? '---' }}
@endforeach
{{ $note->customer->name ?? '---' }} @foreach($note->items as $item)
{{ $item->quantity + 0 }}
@endforeach
@endsection @section('js') @endsection