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

Supplier Monthly Sales Report View supplier sales by months with profit analysis

@component('components.filters', [ 'title' => __('report.filters'), 'class' => 'box-primary' ])
{!! Form::label('supplier_name', __('Supplier') . ' Name:') !!} {!! Form::text('supplier_name', null, ['class' => 'form-control', 'id' => 'supplier_name_filter', 'placeholder' => 'Search by supplier name...']); !!}
{!! Form::label('supplier_id', __('Supplier') . ':') !!} @php $supplier_options = ['' => __('lang_v1.all'), '0' => 'No Supplier']; if(is_array($suppliers)) { $supplier_options = array_merge($supplier_options, $suppliers); } else { $supplier_options = collect($supplier_options)->merge($suppliers)->toArray(); } @endphp {!! Form::select('supplier_id', $supplier_options, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'supplier_filter']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'location_filter']); !!}
{!! Form::label('payment_status', __('purchase.payment_status') . ':') !!} {!! Form::select('payment_status', [ '' => __('lang_v1.all'), 'paid' => __('lang_v1.paid'), 'due' => __('lang_v1.due'), 'partial' => __('lang_v1.partial') ], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'payment_status_filter']); !!}
{!! Form::label('payment_method', __('lang_v1.payment_method') . ':') !!} {!! Form::select('payment_method', $payment_types, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'payment_method_filter']); !!}
{!! Form::label('user_id', __('advancedreports::lang.staff') . ':') !!} {!! Form::select('user_id', $users, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'user_filter']); !!}
{!! Form::label('year', __('Year') . ':') !!} {!! Form::select('year', array_combine(range(date('Y')-5, date('Y')+1), range(date('Y')-5, date('Y')+1)), date('Y'), ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'year_filter']); !!}
@endcomponent
Total Suppliers
0
Total Transactions
0
Total Sales
$0.00
Total Quantity
0
Total Profit
$0.00
Avg per Supplier
$0.00
@component('components.widget', ['class' => 'box-primary', 'title' => 'Supplier Monthly Sales Report'])
@lang('messages.action') Supplier Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Total Sales Total Qty Gross Profit ($) Gross Profit (%)
@endcomponent
@stop @section('javascript')