@extends('backend.master') @section('title') {{ @$title }} @endsection @section('content')
{{ Auth::user()->name }}

{{ _trans('common.robert_downey') }}

{{ _trans('common.ui_ux_designer') }}

@include('bilnetpropertyownerform::preview_steps.profile_menu')

{{ _trans('Building Plan Details (Continued)') }}

{{ _trans('common.Sanitation Type') }}

{{ @$data['sanitation_type'] ?? 'N/A' }}

{{ _trans('common.Sanitation Other') }}

{{ @$data['sanitation_other'] ?? 'N/A' }}

{{ _trans('common.Sanitation Trash Bin Number') }}

{{ @$data['sanitation_trash_bin_number'] ?? 'N/A' }}

{{ _trans('common.Sanitation QR Code') }}

@if (!empty(@$data['sanitation_qr_code']))
@foreach (json_decode(@$data['sanitation_qr_code'], true) as $image)
Sanitation QR Code
@endforeach
@else

{{ _trans('common.No QR Code Images Available') }}

@endif

{{ _trans('common.Internet Type') }}

{{ @$data['internet_type'] ?? 'N/A' }}

{{ _trans('common.Security Type') }}

@if (!empty(@$data['security_type']))
    @foreach (json_decode(@$data['security_type'], true) as $security)
  • {{ $security }}
  • @endforeach
@else

{{ _trans('common.No Security Details') }}

@endif

{{ _trans('common.Service Provider') }}

@if (!empty(@$data['service_provider']))
    @foreach (json_decode(@$data['service_provider'], true) as $provider)
  • {{ $provider }}
  • @endforeach
@else

{{ _trans('common.No Service Provider Details') }}

@endif
@endsection