@if ($order)
@php
$comments = '';
$extras = json_decode($order->order_extras);
if(property_exists($extras,'comments')){
$comments .= "Comments: ".$extras->comments;
}
if(property_exists($extras,'hastags')){
$comments .= "\nHashtags: ".$extras->hastags;
}
if(property_exists($extras,'usernames')){
$comments .= "\nUsernames: ".$extras->usernames;
}
@endphp
{{-- @if(json_decode($order->order_extras,true)['usernames']) {{dd(json_decode($order->order_extras,true)['usernames'])}} @endif --}}
@else
Order Not Found!!!
@endif