@extends('layouts.backend') @section('extraCss') @endsection @section('mainContentArea')

Customer Buying Details

@foreach($bills as $bill) @endforeach
S.no Name mobile Article Color Hsn Store Name Total Mrp Mrp Discount Net Sales
{{ $count }} {{ $bill->customerInfo->firstname }} {{ $bill->customerInfo->telephone }} @foreach($bill->billProducts as $product)

{{ $product->article }}

@endforeach
@foreach($bill->billProducts as $product)

{{ $product->color }}

@endforeach
@foreach($bill->billProducts as $product)

{{ $product->hsn }}

@endforeach
{{ $bill->store_name }} {{ $bill->total_mrp }} @foreach($bill->billProducts as $product)

{{ $product->basemrp }}

@endforeach
{{ $bill->total_mrp-$bill->final_amt }} {{ $bill->final_amt }}
@endsection @section('extraJs') @endsection