Skip to content

Commit

Permalink
lr date formate change
Browse files Browse the repository at this point in the history
  • Loading branch information
mssoo7 committed May 9, 2022
1 parent e0e3e58 commit 88386e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Apis/BiltyController.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public function getAllBilties($biltyId)
];
$restultArray = [
'lr_id' => $getBilties[0]['l_r_bookings']['booking_id'],
'lr_date' => $getBilties[0]['l_r_bookings']['booking_date'],
'lr_date' => date('d/m/Y', strtotime($getBilties[0]['l_r_bookings']['booking_date'])),
'consignor_id' => $getBilties[0]['l_r_bookings']['consignor']['cons_id'],
'consignor_name' => $getBilties[0]['l_r_bookings']['consignor']['name'],
'consignor_mobile' => $getBilties[0]['l_r_bookings']['consignor']['mobile'],
Expand Down

0 comments on commit 88386e7

Please sign in to comment.