@extends('admin::layouts.master')
@section('title', __('admin/order.list'))
@section('content')
@if ($errors->has('error'))
| {{ __('order.id') }} | {{ __('order.number') }} | {{ __('order.customer_name') }} | {{ __('order.payment_method') }} | {{ __('order.status') }} | {{ __('order.total') }} | {{ __('order.created_at') }} | {{ __('order.updated_at') }} | {{ __('common.action') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $order->id }} | {{ $order->number }} | {{ sub_string($order->customer_name, 14) }} | {{ $order->payment_method_name }} | {{ $order->status_format }} | {{ currency_format($order->total, $order->currency_code, $order->currency_value) }} | {{ $order->created_at }} | {{ $order->updated_at }} | {{ __('common.view') }} |
|
|
||||||||