@extends('layout.master1')
@section('title',$title)
@section('description',$description)
@section('og:locale',app()->getLocale())
@section('og:type',$og_type)
@section('og:title',$og_title)
@section('og:description',$og_description)
@section('og:url',$og_url)
@section('og:site_name',$og_sitename)
@section('twitter:title',$twitter_title)
@section('twitter:description',$twitter_desc)
@section('content')
{{ $productsAll->count()}}
@if(!$productsAll->isEmpty())
@foreach($productsAll as $product)
@lang('general.360_virtual_tour')
{{ $product->location}}
- Beds: 03
- Baths: 02
- 931 Sqft
@endforeach
@else
@lang('general.not_category')
@endif
@if(!$productsAll->isEmpty())
@foreach($productsAll as $product)
{{ $product->location}}
@if($product->oturmaOdasi == 1)
- @lang('general.living_room')
@endif
@if($product->yatakOdasi == 1)
- @lang('general.bed_room')
@endif
@if($product->mutfak == 1)
- @lang('general.kitchen')
@endif
@if($product->banyo == 1)
- @lang('general.shower')
@endif
@endforeach
@else
@lang('general.not_category')
@endif
@endsection