@extends('user::layouts.backend-master') @section('breadcrumb_title', 'View currency') @section('content')
| Name | {{ $currency->name }} |
|---|---|
| Code | {{ $currency->code }} |
| Country code | {{ $currency->country_code }} |
| Symbol | {{ $currency->symbol }} |
| Is default | {{ $currency->is_default == 1 ? 'Yes' : 'No' }} |
| Is status | {{ $currency->status == 1 ? 'Active' : 'Inactive' }} |
| Exchange rate | {{ number_format($currency->exchange_rate, 2) }} |
| Symbol position | {{ $currency->symbol_position }} |
| Created At | {{ customDateTimeFormate($currency->created_at) }} |
| Updated At | {{ customDateTimeFormate($currency->updated_at) }} |