@extends('public.layout') @section('title', $area->name.' — Noesantara Law Firm') @push('meta') @php $serviceSchema = [ '@context' => 'https://schema.org', '@type' => 'Service', 'name' => $area->name, 'description' => $area->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($area->description ?? ''), 160), 'provider' => [ '@type' => 'LegalService', 'name' => \App\Models\Setting::get('site.brand','Noesantara Law Firm') ], 'url' => request()->fullUrl(), 'areaServed' => 'ID', 'offers' => [ '@type' => 'Offer', 'availability' => 'https://schema.org/InStock', 'price' => 0, 'priceCurrency' => 'IDR' ], ]; @endphp @endpush @push('meta') @php $breadcrumbs = [ '@context' => 'https://schema.org', '@type' => 'BreadcrumbList', 'itemListElement' => [ [ '@type' => 'ListItem', 'position' => 1, 'name' => 'Home', 'item' => url('/') ], [ '@type' => 'ListItem', 'position' => 2, 'name' => 'Practice', 'item' => url('/practice') ], [ '@type' => 'ListItem', 'position' => 3, 'name' => $area->name, 'item' => request()->fullUrl() ], ], ]; @endphp @endpush @section('content')
{{ $area->excerpt }}
@endif