@extends('layouts.app') @section('content')

@lang('general.sales_return') @can('create_sales_return')      Add New @endcan

@include('validate')

@lang('general.sales_return') List

@csrf
@forelse ($returnList as $return) @empty @endforelse
Ref. No. Branch Date Customer Products Count Total Quantity Action
{{ $return->reference_no }} {{ $return->branch->branch_name ?? '' }} {{ $return->return_date->format(app_date_format()) }} {{ $return->customer->customer_name ?? '' }} {{ $return->totalProduct() }} {{ round($return->totalQuantity(),2) }}
    @can('edit_sales_return')
  • @endcan @can('delete_sales_return')
  • @endcan
@lang('general.no_details_found')
@endsection @push('scripts') @endpush