...
|
...
|
@@ -1300,10 +1300,11 @@ class Car extends Base |
|
|
$seat_no = array_filter($seat_data, function($value) {
|
|
|
return !empty($value);
|
|
|
});
|
|
|
print_r($seat_no);return;
|
|
|
$seat_no = implode(',', $seat_no);
|
|
|
|
|
|
$seat_no = explode(",", $seat_no);
|
|
|
print_r($seat_no);return;
|
|
|
|
|
|
if($seat_data){
|
|
|
if($order['seat_no']){
|
|
|
foreach ($seat_data as $k=>$v){
|
...
|
...
|
|