@if($order->order_state_id==4 || $order->order_state_id==5 ||
$order->order_state_id==6)
@foreach($sucursals as $sucursal)
@if($order->sucursal_id == $sucursal->id)
@else
@endif
@endforeach
@foreach($cities as $city)
@if($city->id == $order->address->city_id)
@else
@endif
@endforeach
@foreach($payment_types as $payment_type)
@if($payment_type->id == $order->payment_type_id)
@else
@endif
@endforeach
@foreach($line_businesses as $line)
@if($line->id == $order->line_businesses_id)
@else
@endif
@endforeach
@foreach($sales_channels as $channel)
@if($channel->id == $order->sales_channel_id)
@else
@endif
@endforeach