@extends('layouts.app') @section('title', __('Sales & Purchase Returns')) @section('content')
| {{ __('Date') }} | {{ __('Type') }} | {{ __('Product') }} | {{ __('Customer') }} | {{ __('Qty') }} | |
|---|---|---|---|---|---|
| {{ $return->return_date->format('d M Y') }} | {{ ucfirst(str_replace('_',' ',$return->type)) }} | {{ $return->product?->name }} | {{ $return->customer?->name ?: '—' }} | {{ $return->quantity }} |