@extends('advancedreports::layouts.app') @section('title', __('Supplier Wise Sales Report')) @section('content')

Supplier Wise Sales Report View supplier wise product sales with profit analysis

@component('components.filters', [ 'title' => __('report.filters'), 'class' => 'box-primary' ])
{!! Form::label('supplier_id', __('Supplier') . ':') !!} @php $supplier_options = []; if(is_array($suppliers)) { $supplier_options = $suppliers; } else { $supplier_options = $suppliers->toArray(); } @endphp {!! Form::select('supplier_id', $supplier_options, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.please_select'), 'id' => 'supplier_filter']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.please_select'), 'id' => 'location_filter']); !!}
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => 'Supplier Wise Sales Report'])
@lang('messages.action') @lang('Supplier') @lang('Total Products') @lang('Total Transactions') @lang('Quantity Sold') @lang('Sales Amount') @lang('Purchase Cost') @lang('Gross Profit') @lang('Profit Margin') (%)
@endcomponent
@stop @section('javascript') @endsection