@if (isset($data) && !$data->isEmpty() && count($data) > 0)
| {{ __('home.Invoice_no') }} | {{ __('home.sallerName') }} | {{ __('home.clietName') }} | {{ __('home.date') }} | {{ __('home.branch') }} | {{ __('home.paymentmethod') }} | {{ __('home.total') }} | {{ __('home.operations') }} |
|---|---|---|---|---|---|---|---|
| {{ $product->id }} | {{ $product->user->name ?? '' }} | {{ $product->customer->name ?? '' }} | {{ $product->created_at }} | {{ $product->branch->name ?? '' }} | @if ($product->Pay == 'Cash') {{ __('report.cash') }} @elseif ($product->Pay == 'Shabka') {{ __('report.shabka') }} @elseif ($product->Pay == 'Credit') {{ __('report.credit') }} @elseif ($product->Pay == 'Bank_transfer') {{ __('home.Bank_transfer') }} @else {{ __('home.Partition of the amount') }} @endif | {{ round(($product->Price - $product->discount), 2) }} |
{{ __('home.show') }}
@php
$actionUrl = Mcamara\LaravelLocalization\Facades\LaravelLocalization::getCurrentLocale() . '/return_sale_delivery';
@endphp
|