PHP code example of ngtfkx / laradeck-helpers
1. Go to this page and download the library: Download ngtfkx/laradeck-helpers library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ngtfkx / laradeck-helpers example snippets
php
// Проверяем является ли запрос аяксовым
is_ajax(\Illuminate\Http\Request $request): bool
php
// Проверка является ли число четным
is_even(int $value): bool
php
// Проверка является ли число нечетным
is_odd(int $value): bool
php
// Перечисление элементов через запятую
comma(...$items): string
php
// Форматировать сумму в рублях
format_rub($val, $sign = '₽'): string