@extends('layouts.app') @section('title', __('dashboard.Add Purchase Return')) @section('page_heading', __('dashboard.Add Purchase Return')) @section('content') @include('layouts.partials.workspace-page-styles')

{{ __('dashboard.Create Purchase Return for Purchase') }} #{{ $purchase->id }}

حدد الكميات والمبالغ المستردة لكل منتج.

{{ __('dashboard.Purchase Returns') }}
@csrf
@foreach($purchase->products as $product) @endforeach
{{ __('dashboard.Product Name') }} {{ __('dashboard.Purchased Quantity') }} {{ __('dashboard.Return Quantity') }} {{ __('dashboard.Refund Amount') }}
{{ $product->name }} {{ $product->pivot->quantity }}
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection