@php $termsTitle = $terms ? ___($terms, 'title') : __('public.breadcrumb.terms'); $termsBody = $terms ? ___($terms, 'description') : ''; $termsDescription = $terms ? ___($terms, 'meta_description') : $termsTitle; @endphp @extends('layouts.public') @section('meta') @include('includes.seo-meta', [ 'slug' => 'terms', 'path' => '/terms', 'defaults' => [ 'title' => $termsTitle, 'description' => $termsDescription, 'append_site_name' => true, ], ]) @push('json_ld') @include('includes.json-ld-graphs', [ 'graphs' => [ schema_breadcrumb([ ['name' => __('public.breadcrumb.home'), 'url' => schema_absolute_url('/')], ['name' => __('public.breadcrumb.terms'), 'url' => schema_absolute_url('/terms')], ]), ], ]) @endpush @endsection @section('content') @include('includes.corano-breadcrumb', [ 'crumbs' => [ ['label' => __('public.breadcrumb.terms')], ], ])
@if($termsTitle)

{{ $termsTitle }}

@endif @if($termsBody)
{!! rich_html($termsBody) !!}
@endif
@endsection