@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)

Invoice Number : #{{$sale->invoice_no}}

  • 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}}
@foreach ($sale->saleItems as $item) @endforeach
Product Name SKU
{{$item->product->product_name}} {{$item->product->sku}}
@endforeach @endsection @section('scripts') @endsection