@extends('layouts.master')
@section('page_title','Search Results')
@section('title','Search')
@section('main_item','Search')
@section('sub_item',$query)
@section('content')
@foreach ($sales as $sale)
-
Waybill No : {{$sale->waybill->waybill_no}}
Customer name : {{ $sale->customer->name }}
Address :
{{$sale->customer->landmark}}
{{$sale->customer->city}}
{{!empty($sale->customer->district->district_name) ? $sale->customer->district->district_name : ''}}
Mobile : {{$sale->customer->mobile}}
Mobile 2 : {{$sale->customer->mobile_2}}
| Product Name |
SKU |
@foreach ($sale->saleItems as $item)
| {{$item->product->product_name}} |
{{$item->product->sku}} |
@endforeach
@endforeach
@endsection
@section('scripts')
@endsection