From 5e0d5dc9633a4ffbb912b0e35659227192b7a6e4 Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Sat, 23 Feb 2019 05:31:53 +0800 Subject: [PATCH] Major incomplete Change --- app/Http/Resources/Order.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Resources/Order.php b/app/Http/Resources/Order.php index 61e0f53..a618767 100644 --- a/app/Http/Resources/Order.php +++ b/app/Http/Resources/Order.php @@ -25,7 +25,7 @@ class Order extends JsonResource 'warehouse_id' => $this->warehouse_id, 'current_step' => $this->current_step, 'complete' => $this->complete, - 'date' => $this->created_at->format('M d Y'), + 'date' => $this->created_at->format('d M Y'), 'steps' => [ 'details' => (new GetStep())->execute($this->current_step), 'attachments' => (new StepAttachments())->execute($this->id, $this->current_step)