@extends('admin::index') @section('content')

{{ $header or trans('admin.title') }} {{ $description or trans('admin.description') }}

@include('partials.breadcrumb')
@include('partials.error') @include('admin::partials.exception') @include('admin::partials.toastr') {{-- MAIN CONTENT --}}
{{ Form::open(array('url' => url()->current(), 'method' => 'get', 'class' => 'filter-group')) }}
{{ Form::close() }}
@forelse($list as $order) @empty @endforelse
{{__('Mã đơn')}} {{__('Tên KH')}} {{__('SĐT')}} {{__('Số mặt hàng')}} {{__('Tổng tiền')}} {{__('Ngày tạo')}} {{__('Trạng thái')}} #
{{ $order->code }} {{ $order->customer?$order->customer->fullname:'' }} {{ $order->customer?$order->customer->phone:'' }} {{ $order->count }} {{ number_format($order->total) }} ₫ {{ $order->created_at->format('d-m-Y H:i') }} {{ $order->status }}
{{__('Không có dữ liệu')}}
@if(has_paging($list)) @endif
@endsection