@extends('admin.layout.master') @section('title','Sales Summery') @section('custom_style') @endsection @section ('content')
@include('admin.layout.title_header', ['title'=>'SALES SUMMERY(ITEM WISE)'])
{{-- --}}
@php $r_types=[3=>'Sales',4=>'Return',1=>'NET',0=>'Sales & Return']; @endphp
@php $printData['title']='SALES SUMMERY'; $printData['start_date']=Request()->date_from?date('d-M-Y',strtotime(Request()->date_from)):date('d-M-Y'); $printData['end_date']=Request()->date_to?date('d-M-Y',strtotime(Request()->date_to)):date('d-M-Y'); $printData['search_by']=$r_types[$type]; $printData['showroom']=Request()->showroom && Request()->showroom!=0?$customers->where('id',Request()->showroom)->first()->name_eng:'All Showroom'; $routeName=Route::currentRouteName(); $printData=getPrintData($routeName,$printData); @endphp {!!$printData['head']!!}
{{--
--}} @include('inventory.global.loader')

{{-- @include('inventory.order.detail_modal') --}} @endsection @section('script') @stop