@extends('layouts.master') @section('page_title','View Warranty') @section('title','Warranty Details') @section('main_item','Warranty') @section('sub_item','Warranty Details') @section('content')

Order Details : (Invoice Number : #{{$sale->invoice_no}})

Customer name : {{$sale->customer->name}}
Address : {{$sale->customer->landmark}}
{{$sale->customer->city}}
{{$sale->customer->district->district_name}}
Mobile : {{$sale->customer->mobile}}
Mobile 2 : {{$sale->customer->mobile_2}}
Landline : {{$sale->customer->landline}}
Email : {{$sale->customer->email}}
Ref No : {{$sale->invoice_no}}
Waybill No : {{$sale->waybill->waybill_no}}
Delivery Status : {{Str::title($sale->status)}}
Payment Status : {{Str::title($sale->payment_status)}}
@foreach ($sale->saleItems as $item) @endforeach
Product Name Attribute Quantity Unit Price Line Total
{{$item->product->product_name}} {{$item->attribute_value}} {{$item->qty}} {{$item->product->unit->short_name}} {{number_format($item->sale_unit_price,2)}} {{number_format($item->sale_line_total,2)}}
Order Value: ₨ {{$sale->invoice_total}}
Delivery Fee: (+) ₨ {{$sale->delivery_fee}}
Order Total Value: ₨ {{$sale->invoice_nettotal}}
@endsection @section('scripts') @endsection