@extends('advancedreports::layouts.app') @section('title', __('Purchase Analysis Report')) @section('content')

{{ __('Purchase Analysis Report') }} {{ __('Analyze purchase trends, costs, returns & supplier performance') }}

@component('components.filters', [ 'title' => __('Filters'), 'class' => 'box-primary' ])
{!! Form::label('location_filter', __('business.business_location') . ':') !!} {!! Form::select('location_filter', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.all'), ]) !!}
{!! Form::label('supplier_filter', __('Supplier') . ':') !!} {!! Form::select('supplier_filter', $suppliers, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('messages.all'), ]) !!}
{!! Form::label('start_date', __('business.start_date') . ':') !!}
{!! Form::text('start_date', null, ['class' => 'form-control', 'id' => 'start_date', 'readonly']) !!}
{!! Form::label('end_date', __('advancedreports::lang.end_date') . ':') !!}
{!! Form::text('end_date', null, ['class' => 'form-control', 'id' => 'end_date', 'readonly']) !!}
@endcomponent

Purchase Analysis Details

Product Supplier Purchase Count Total Quantity Avg Price Min Price Max Price Price Variance Total Cost Potential Savings Priority
Date Return Ref Original Purchase Supplier Location Return Amount Original Amount Return % Timeline Reason
Supplier Payment Terms Total Purchases Total Amount Paid Amount Outstanding Payment Performance Avg Payment Days Compliance
@stop @section('javascript') @endsection