PHP 8.2.30
Preview: Amount.jsx Size: 1.22 KB
/proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Components/Amount.jsx

import formatCurrency from "@/utils/formatCurrency"
import { usePage } from "@inertiajs/react"

export default function Amount({ amount }) {
    const {
        currency: { currency_symbol, currency_position, decimal_separator, no_of_decimal }
    } = usePage().props

    const formattedAmount = formatCurrency(amount, no_of_decimal, decimal_separator)

    let data = null
    if (currency_position === "left") {
        data = (
            <span>
                {currency_symbol}
                {formattedAmount}
            </span>
        )
    } else if (currency_position === "right") {
        data = (
            <span>
                {formattedAmount}
                {currency_symbol}
            </span>
        )
    } else if (currency_position === "left_space") {
        data = (
            <span>
                {currency_symbol} {formattedAmount}
            </span>
        )
    } else if (currency_position === "right_space") {
        data = (
            <span>
                {formattedAmount} {currency_symbol}
            </span>
        )
    } else {
        data = (
            <span>
                {currency_symbol}
                {formattedAmount}
            </span>
        )
    }
    return <>{data}</>
}

Directory Contents

Dirs: 0 × Files: 14

Name Size Perms Modified Actions
1.22 KB lrw-rw-rw- 2025-04-09 10:29:01
Edit Download
3.06 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
214 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
651 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
2.58 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
220 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
255 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
2.07 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
418 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
704 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
676 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
766 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
708 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
555 B lrw-rw-rw- 2025-04-08 04:12:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).