@extends('layouts.app') @section('title') @if( ! empty($title)) {{ $title }} | @endif @parent @endsection @section('content')
@include('admin.sidebar_menu')
@if( ! empty($title))

{{ $title }}

@endif @include('admin.flash_msg')
@lang('app.name') {{ $user->name }}
@lang('app.user_name') {{ $user->user_name }}
@lang('app.email') {{ $user->email }}
@lang('app.gender') {{ ucfirst($user->gender) }}
@lang('app.mobile') {{ $user->mobile }}
@lang('app.phone') {{ $user->phone }}
@lang('app.address') {{ $user->address }}
@lang('app.country') @if($user->country) {{ $user->country->country_name }} @endif
@lang('app.website') {{ $user->website }}
@lang('app.created_at') {{ $user->signed_up_datetime() }}
@lang('app.status') {{ $user->status_context() }}
@if($ads->total() > 0)

@lang('app.posted_ads')

@foreach($ads as $ad) @endforeach
{{ $ad->title }}

{{ $ad->full_address() }}
{{ $ad->posting_datetime() }} @if($ad->reports->count() > 0)
@lang('app.reports') : {{ $ad->reports->count() }} @endif

{!! $ads->links() !!}
@endif
@endsection @section('page-js') @endsection