@extends ('core.layouts.app') @section ('title', trans('labels.backend.currencies.management') . ' | ' . trans('labels.backend.currencies.create')) @section('page-header')

{{ trans('labels.backend.currencies.management') }} {{ trans('labels.backend.currencies.create') }}

@endsection @section('content')

{{ trans('labels.backend.currencies.view') }}

@include('focus.currencies.partials.currencies-header-buttons')

{{trans('currencies.code')}}

{{$currency['code']}}

{{trans('currencies.symbol')}}

{{$currency['symbol']}}

{{trans('currencies.rate')}}

{{$currency['rate']}}

{{trans('currencies.thousand_sep')}}

{{$currency['thousand_sep']}}

{{trans('currencies.decimal_sep')}}

{{$currency['decimal_sep']}}

{{trans('currencies.precision_point')}}

{{$currency['precision_point']}}

{{trans('currencies.symbol_position')}}

@php switch ($currency['symbol_position']){ case 0 : echo trans('currencies.left'); break; case 1 : echo trans('currencies.right'); break; } @endphp

@endsection