@extends('layouts.master') @section('css') @section('title') {{ __('home.confirm_delivery') }} @stop @endsection @section('content')
{{ __('home.add_new_delivery_note') }}
@csrf
{{ __('home.all_notes') }}
@foreach($notes as $note) @endforeach
# {{ __('home.code') }} {{ __('home.product') }} {{ __('home.customer') }} {{ __('home.qty') }} {{ __('home.actions') }}
{{ $loop->iteration }} {{ $note->code }} {{ $note->product->product_name ?? '---' }} {{ $note->customer->name ?? '---' }} {{ $note->quantity }}
@endsection @section('js') @endsection