@vite(['resources/css/app.css', 'resources/js/app.js'])
@stack('styles')
Skip to main content
@include('frontend.partials.header')
@yield('content')
@include('frontend.partials.footer')
@stack('scripts')
@php
$defaultSchema = [
'@context' => 'https://schema.org',
'@type' => 'RealEstateAgent',
'name' => 'Kashi Housing',
'description' => 'Verified, broker-free real estate platform for buying and renting properties in Varanasi',
'url' => config('app.url'),
'logo' => asset('images/logo.png'),
'address' => [
'@type' => 'PostalAddress',
'addressLocality' => 'Varanasi',
'addressRegion' => 'Uttar Pradesh',
'addressCountry' => 'IN',
],
'contactPoint' => [
'@type' => 'ContactPoint',
'telephone' => $sitePhone,
'contactType' => 'customer service',
],
];
@endphp
@if (isset($schema))
@endif