@extends('user.layouts.template') @section('style') @endsection @section('content') @php $permission = session()->get('permissions'); @endphp
Team Management Property Assign
User Name
{{ $user->name ?? '-' }}
Phone
{{ $user->mobile ?? '-' }}
Email
{{ $user->email ?? '-' }}
Role
{{ $user->role_name ?? '-' }}

Assigned Properties

@php $properties_name = "Null"; if (!empty($all_properties)) { foreach ($all_properties as $properties) { if (in_array($properties->id, $assigned_property_ids)) { if ($properties_name == "Null") { $properties_name = ""; } $properties_name .= $properties->name . ", "; } } } $properties_name = rtrim($properties_name, ', '); echo $properties_name; @endphp
@if (!empty($all_properties)) @foreach($all_properties as $property) @endforeach @endif
Property City Assign Property
{{ $property->name ?? "-" }} {{ $property->city ?? "-" }} {{ $property->state ?? "-" }}
Cancel
@endsection @section('script') @endsection