@extends('admin::layouts.master') @section('title', '货币管理') @section('content')
@foreach ($currencies as $currency) @endforeach
# 名称 编码 货币左符号 货币右符号 小数位数 汇率值 状态 操作
{{ $currency['id'] }} {{ $currency['name'] }} {{ $currency['code'] }} {{ $currency['symbol_left'] }} {{ $currency['symbol_right'] }} {{ $currency['decimal_place'] }} {{ $currency['value'] }} {{ $currency['status'] }} 编辑
@endsection