 Ngorei Doc
            Ngorei Doc 
        Filters dapat digunakan untuk memformat data sebelum ditampilkan.
{post.title|upper|truncate(50)}
{product.price|currency(IDR)|number_format(2)}| Filter | Description | Example | 
|---|---|---|
| upper | Convert to uppercase | {user.name|upper} | 
| lower | Convert to lowercase | {user.name|lower} | 
| truncate | Truncate text with ellipsis | {post.content|truncate(100)} | 
| date | Format date | {post.created_at|date(Y-m-d)} | 
| time_ago | Convert to relative time | {post.created_at|time_ago} | 
| number_format | Format numbers | {product.price|number_format(2)} | 
| currency | Format as currency | {product.price|currency(IDR)} |