@extends('public.layout') @section('title','Our Team — Noesantara Law Firm') @push('meta') @php $items = []; $i = 1; foreach ($members as $m) { $items[] = [ '@type' => 'ListItem', 'position' => $i++, 'url' => url('/team/'.$m->slug), 'item' => [ '@type' => 'Person', 'name' => $m->name, 'jobTitle' => $m->title, 'url' => url('/team/'.$m->slug), 'image' => $m->photo_thumb_path ?: $m->photo_path ?: null, ], ]; } $itemList = [ '@context' => 'https://schema.org', '@type' => 'ItemList', 'name' => 'Our Team', 'itemListOrder' => 'https://schema.org/ItemListOrderAscending', 'numberOfItems' => count($items), 'itemListElement' => $items, ]; $breadcrumbs = [ '@context' => 'https://schema.org', '@type' => 'BreadcrumbList', 'itemListElement' => [ [ '@type' => 'ListItem', 'position' => 1, 'name' => 'Home', 'item' => url('/') ], [ '@type' => 'ListItem', 'position' => 2, 'name' => 'Team', 'item' => url('/team') ], ], ]; @endphp @endpush @section('content')