Skip to content

Instantly share code, notes, and snippets.

if (Math.max(minPrice, maxPrice) > 1_000_000) {
offsetValue = 100_000
divideValue = 1_000_000
divideUnit = 'M'
} else if (Math.max(minPrice, maxPrice) > 500_000) {
offsetValue = 100_000
divideValue = 1_000_000
divideUnit = 'M'
} else if (Math.max(minPrice, maxPrice) > 100_000) {
offsetValue = 50_000
<?php
// Tinker away!
use App\Services\MobileAppRoute\MobileAppRouteHelper;
/**
* Example how to trigger customer notification
*/
$customer = \App\Models\Customer::query()
->where('email','phekxizai@hotmail.com')