@extends('layouts.master') @section('content')

Create Order Limit

Title*
Sale Type*

Add Distributor Order Limit

{{--
LOADING...
--}}
@csrf {{-- Dist Tables --}} @if(@$order_limit_record !=null && @$order_limit_record->count() > 0 && @$limit_details->sales_type == 1) @foreach($order_limit_record as $key=>$order_limit_dist) @endforeach
Sr No. Distributor Type Orde Limit
{{$key+1}} {{$order_limit_dist['distributer_type_name']}}
@endif {{-- Channels Tables --}} @if(@$order_limit_record !=null && @$order_limit_record->count() > 0 && @$limit_details->sales_type == 2) @foreach($order_limit_record as $key=>$order_limit_dist) @endforeach
Sr No. Channel Segment Orde Limit
{{$key+1}} {{$order_limit_dist['channel_name']}} {{$order_limit_dist['segment_name']}}
@endif
{{-- --}}
@endsection