@extends('layouts.backend') @section('extraCss') @endsection @section('mainContentArea') @include('backend.pos-window.bill-menu')

Store Exchanges

Firstname Telephone Start Ends Action
@foreach($exchanges as $d => $exchange) @endforeach
# Date Customer Telephone Article Color Size Hsn Items Amount Action
{{ ($d + 1) }} {{ date("F jS, Y", strtotime($exchange->date_added)) }} {{ $exchange->customerInfo->firstname . ' ' . $exchange->customerInfo->latname }} {{ $exchange->customerInfo->telephone }} @foreach($exchange->exchangeProducts as $model)

@endforeach
@foreach($exchange->exchangeProducts as $model)

@endforeach
@foreach($exchange->exchangeProducts as $model)

@endforeach
@foreach($exchange->exchangeProducts as $hsn) {{ $hsn->fabric}}

@endforeach
{{ $exchange->exchangeProducts->count() }} {{ round($exchange->exchangeProducts->sum('amount')) }}
@csrf
{!! $exchanges->render() !!}
@endsection