订单多语言
This commit is contained in:
parent
a53898ed78
commit
1daca70b3a
|
|
@ -46,15 +46,15 @@
|
|||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>订单号</th>
|
||||
<th>客户姓名</th>
|
||||
<th>支付方式</th>
|
||||
<th>状态</th>
|
||||
<th>总计</th>
|
||||
<th>生成日期</th>
|
||||
<th>修改日期</th>
|
||||
<th>操作</th>
|
||||
<th>{{ __('order.id') }}</th>
|
||||
<th>{{ __('order.number') }}</th>
|
||||
<th>{{ __('order.customer_name') }}</th>
|
||||
<th>{{ __('order.payment_method') }}</th>
|
||||
<th>{{ __('order.status') }}</th>
|
||||
<th>{{ __('order.total') }}</th>
|
||||
<th>{{ __('order.created_at') }}</th>
|
||||
<th>{{ __('order.updated_at') }}</th>
|
||||
<th>{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<th>{{ __('admin/region.describe') }}</th>
|
||||
<th>{{ __('common.created_at') }}</th>
|
||||
<th>{{ __('common.updated_at') }}</th>
|
||||
<th class="text-end">{{ __('common.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<th>{{ __('admin/region.describe') }}</th>
|
||||
<th>{{ __('common.created_at') }}</th>
|
||||
<th>{{ __('common.updated_at') }}</th>
|
||||
<th class="text-end">{{ __('common.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<th>{{ __('admin/tax_rate.area') }}</th>
|
||||
<th>{{ __('common.created_at') }}</th>
|
||||
<th>{{ __('common.updated_at') }}</th>
|
||||
<th class="text-end">{{ __('common.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ return [
|
|||
'created_at' => 'Created At',
|
||||
'updated_at' => 'Updated At',
|
||||
'edit' => 'Edit',
|
||||
'operate' => 'Operate',
|
||||
'action' => 'Action',
|
||||
'add' => 'Add',
|
||||
'please_choose' => 'Please Choose',
|
||||
'recommend_size' => 'Recommend Size',
|
||||
|
|
|
|||
|
|
@ -13,9 +13,11 @@ return [
|
|||
'id' => 'ID',
|
||||
'number' => 'Number',
|
||||
'customer_name' => 'Customer Name',
|
||||
'payment_method' => 'Payment Method',
|
||||
'email' => 'Email',
|
||||
'telephone' => 'Telephone',
|
||||
'created_at' => 'Created',
|
||||
'updated_at' => 'Updated',
|
||||
'status' => 'Status',
|
||||
'total' => 'Total',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -54,7 +54,6 @@ return [
|
|||
'order_details' => 'Order Details',
|
||||
'amount' => 'Amount',
|
||||
'state' => 'State',
|
||||
'operate' => 'Operate',
|
||||
'order_number' => 'Order Number',
|
||||
'check' => 'Check',
|
||||
|
||||
|
|
@ -116,7 +115,6 @@ return [
|
|||
'service_type' => 'Service Type',
|
||||
'return_reason' => 'Reason For Return',
|
||||
'creation_time' => 'Creation Time',
|
||||
'operate' => 'Operate',
|
||||
'check' => 'Check',
|
||||
|
||||
'rma_info' => [
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ return [
|
|||
'commodity' => 'Commodity',
|
||||
'quantity' => 'Quantity',
|
||||
'subtotal' => 'Subtotal',
|
||||
'operate' => 'Operate',
|
||||
'product_total' => 'Product Totals',
|
||||
'all' => 'All',
|
||||
'selected' => 'Selected',
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ return [
|
|||
'created_at' => '创建时间',
|
||||
'updated_at' => '修改时间',
|
||||
'edit' => '编辑',
|
||||
'operate' => '操作',
|
||||
'action' => '操作',
|
||||
'add' => '添加',
|
||||
'please_choose' => '请选择',
|
||||
'recommend_size' => '建议尺寸',
|
||||
|
|
|
|||
|
|
@ -13,9 +13,11 @@ return [
|
|||
'id' => 'ID',
|
||||
'number' => '订单号',
|
||||
'customer_name' => '客户姓名',
|
||||
'payment_method' => '支付方式',
|
||||
'email' => 'Email',
|
||||
'telephone' => '联系电话',
|
||||
'created_at' => '创建时间',
|
||||
'updated_at' => '更新时间',
|
||||
'status' => '状态',
|
||||
'total' => '订单总额',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -54,7 +54,6 @@ return [
|
|||
'order_details' => '订单详情',
|
||||
'amount' => '金额',
|
||||
'state' => '状态',
|
||||
'operate' => '操作',
|
||||
'order_number' => '订单号',
|
||||
'check' => '查看',
|
||||
|
||||
|
|
@ -116,7 +115,6 @@ return [
|
|||
'service_type' => '服务类型',
|
||||
'return_reason' => '退换原因',
|
||||
'creation_time' => '创建时间',
|
||||
'operate' => '操作',
|
||||
'check' => '查看',
|
||||
|
||||
'rma_info' => [
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ return [
|
|||
'commodity' => '商品',
|
||||
'quantity' => '数量',
|
||||
'subtotal' => '小计',
|
||||
'operate' => '操作',
|
||||
'product_total' => '商品总计',
|
||||
'all' => '全部',
|
||||
'selected' => '已选',
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<th>{{ __('shop/account.order.order_details') }}</th>
|
||||
<th>{{ __('shop/account.order.amount') }}</th>
|
||||
<th>{{ __('shop/account.order.state') }}</th>
|
||||
<th class="text-end">{{ __('shop/account.order.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@foreach ($orders as $order)
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@
|
|||
@section('body-class', 'page-account-rmas')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="container">
|
||||
|
||||
<x-shop-breadcrumb type="static" value="account.rma.index" />
|
||||
<x-shop-breadcrumb type="static" value="account.rma.index" />
|
||||
|
||||
{{-- <nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
<th>{{ __('shop/account.rma.return_reason') }}</th>
|
||||
<th>{{ __('shop/account.rma.creation_time') }}</th>
|
||||
{{-- <th>状态</th> --}}
|
||||
<th class="text-end">{{ __('shop/account.rma.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
<th>{{ __('shop/carts.index') }}</th>
|
||||
<th width="170">{{ __('shop/carts.commodity') }}</th>
|
||||
<th width="170">{{ __('shop/carts.subtotal') }}</th>
|
||||
<th class="text-end">{{ __('shop/carts.operate') }}</th>
|
||||
<th class="text-end">{{ __('common.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
Loading…
Reference in New Issue