Organization Data
@if($data)
- ID: {{ $data->id }}
- Name: {{ $data->name }}
- Address:
@foreach($data->address as $address)
-
{{ $address->line[0] }},
{{ $address->city }},
{{ $address->country }}
@foreach($address->extension as $extension)
@foreach($extension->extension as $item)
{{ $item->url }}: {{ $item->valueCode }}
@endforeach
@endforeach
@endforeach
- Identifier:
@foreach($data->identifier as $identifier)
-
System: {{ $identifier->system }}
Value: {{ $identifier->value }}
@endforeach
- Last Updated: {{ $data->meta->lastUpdated }}
- Version ID: {{ $data->meta->versionId }}
- Type:
@foreach($data->type as $type)
@foreach($type->coding as $coding)
-
Code: {{ $coding->code }}
Display: {{ $coding->display }}
System: {{ $coding->system }}
@endforeach
@endforeach
@else
No data available.
@endif