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