@extends('base') @section('title') About: {{ $graph->label($primaryTopic) ?? $graph->getLiteral($primaryTopic, 'schema:name') }} @endsection @section('content')

@yield('title')

{{ $primaryTopic }}
An Entity of Type:
@foreach($graph->toRdfPhp() as $subject => $predicateObjects) @if($subject === $primaryTopic) @foreach($predicateObjects as $predicate => $objects) @include('parts.row') @endforeach @break @endif @endforeach @foreach($graph->toRdfPhp() as $subject => $predicateObjects) @if($subject !== $primaryTopic) @foreach($predicateObjects as $predicate => $objects) @include('parts.row') @endforeach @endif @endforeach
Property Value
@endsection