@extends('layouts.app') @section('content')
{{ _lang('Add New') }}
{{ _lang('List Sales Return') }} @php $currency = currency(); @endphp @php $base_currency = base_currency(); @endphp @php $date_format = get_company_option('date_format','Y-m-d'); @endphp
@foreach($sales_returns as $sales) @endforeach
{{ _lang('Return Date') }} {{ _lang('Customer') }} {{ _lang('Grand Total') }} {{ _lang('Action') }}
{{ date($date_format, strtotime($sales->return_date)) }} {{ $sales->customer->contact_name }} {{ decimalPlace($sales->grand_total, $currency) }}
@if($base_currency != $sales->customer->currency) {{ decimalPlace($sales->converted_total, currency($sales->customer->currency)) }} @endif
@endsection