@extends('backend.master') @section('title') {{ $title }} @endsection @section('content')

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

{{ _trans('common.add') }}
@if (hasPermission('tenant_update') || hasPermission('tenant_delete')) @endif @forelse ($landlords as $key => $row) @empty @endforelse
{{ _trans('common.SR No.') }} {{ _trans('common.Name') }} {{ _trans('common.Email') }} {{ _trans('common.Phone') }} {{ _trans('common.Occupation') }} {{ _trans('common.Designation') }} {{ _trans('common.Country') }} {{ _trans('common.NID') }} {{ _trans('common.Image') }} {{ _trans('common.Status') }}{{ _trans('common.Action') }}
{{ ++$key }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ $row->occupation }} {{ $row->designation ? $row->designation->title : '-' }} {{ $row->country? $row->country->name : '-' }} {{ $row->nid }}
{{ $row->name }}
@if ($row->status == App\Enums\Status::ACTIVE) {{ _trans('common.active') }} @else {{ _trans('common.inactive') }} @endif

No data available

Please add new entity regarding this table

@endsection @push('script') @include('backend.partials.delete-ajax') @endpush