@php
$route = route('config.updateBusinessRules');
$allowOutOfStock = \App\Models\Configuration::query()->where('label', '=', 'allow_out_of_stock_orders')->first();
$allowOverDistribution = \App\Models\Configuration::query()->where('label', '=', 'allow_over_distribution_orders')->first();
$outOfStockValue = $allowOutOfStock ? $allowOutOfStock->value : '0';
$overDistributionValue = $allowOverDistribution ? $allowOverDistribution->value : '0';
@endphp