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

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

@forelse($collection as $row) @empty @endforelse
{{ _trans('common.SR No') }} {{ _trans('common.Name') }} {{ _trans('common.Type') }} {{ _trans('common.Status') }} {{ _trans('common.Action') }}
{{ $loop->iteration }} {{ $row->name }} {{ $row->type }} @if ($row->status == 'active') {{ _trans('landlord.active') }} @else {{ _trans('landlord.inactive') }} @endif
@endsection