@extends('layouts.master') @section('css') @endsection @section('title') {{ __('report.purchasproducttocustomer') }} @endsection @section('page-header') @endsection @section('content') @if ($errors->any()) @endif @if (session()->has('notfountreturnproduct')) @endif
{{ __('home.advanced_search_filters') ?? 'بحث متقدم وفلترة البيانات' }}

@csrf
@if (isset($Saleing))
@forelse ($Saleing as $index => $invoice) @empty @endforelse
# {{ __('home.date') }} {{ __('home.productNo') }} {{ __('home.product') }} {{ __('home.sellingproduct without tax') }} {{ __('home.quantity') }}
{{ $index + 1 }} {{ $invoice->created_at }} {{ $invoice->productData->Product_Code ?? '' }} {{ $invoice->productData->product_name ?? '' }} {{ number_format($invoice->Unit_Price, 2) }} {{ $invoice->quantity }}
{{ __('home.no_data_available') ?? 'لا توجد بيانات متاحة' }}
@endif
@endsection @section('js') @endsection