@extends('layouts.admin') @section('title') Cập nhật đơn hàng @endsection @section('content-admin')
@csrf @if($errors->any())
{{-- @foreach($errors->all() as $error) {{ $error }}
@endforeach --}} Vui lòng kiểm tra lại dữ liệu
@endif @if(session('msg'))
{{session('msg')}}
@endif
@error('trang_thai') {{ $message }} @enderror
@error('trang_thai_thanh_toan') {{ $message }} @enderror
Lịch sử trạng thái đơn hàng
    @foreach($orderStatus as $index => $status)
  • {{ \Carbon\Carbon::parse($status->created_at)->format('H:i:s d/m/Y') }} @if($status->trang_thai == 0) Đang xử lý @elseif($status->trang_thai == 1) Đang giao @elseif($status->trang_thai == 2) Hoàn tất @elseif($status->trang_thai == 3) Đã hủy @elseif($status->trang_thai == 4) Trả hàng @else Đặt hàng @endif
  • @endforeach
@endsection @section('stylesheet') @endsection