@php
$version = $basicInfo->theme_version;
@endphp
@extends("frontend.layouts.layout-v$version")
@section('pageHeading')
{{ __('Dashboard') }}
@endsection
@section('content')
@includeIf('frontend.partials.breadcrumb', [
'breadcrumb' => !empty($bgImg) ? $bgImg->breadcrumb : '',
'title' => !empty($pageHeading) ? $pageHeading->dashboard_page_title : __('Dashboard'),
'subtitle' => __('Dashboard'),
])
@includeIf('frontend.user.side-navbar')
{{ __('Account Information') }}
- {{ __('Name') . ':' }} {{ $authUser->name }}
{{-- - {{ __('Username') . ':' }} {{ $authUser->username }}
--}}
- {{ __('Email') . ':' }} {{ $authUser->email }}
- {{ __('Phone') . ':' }} {{ $authUser->phone }}
- {{ __('City') . ':' }} {{ $authUser->city }}
- {{ __('Country') . ':' }} {{ $authUser->country }}
- {{ __('State') . ':' }} {{ $authUser->state }}
- {{ __('Zip Code') . ':' }} {{ $authUser->zip_code }}
- {{ __('Address') . ':' }} {{ $authUser->address }}
{{ __('Wishlists') }}
| {{ __('Serial') }} |
{{ __('Property title') }} |
{{ __('Action') }} |
@php
$i = 1;
@endphp
@foreach ($wishlists as $item)
@php
$content = DB::table('property_contents')
->where([
['property_id', $item->property_id],
['language_id', $language->id],
])
->select('title', 'slug')
->first();
@endphp
@if ($content)
| #{{ $i }} |
{{ $content->title }}
|
{{ __('View') }}
{{ __('Remove') }}
|
@php
$i++;
@endphp
@endif
@endforeach
@endsection