@extends('layouts.nav') @section('title') Tenants @endsection @section('content')

System Tenants

Add tenants
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

@foreach ($tenants as $tenant) @endforeach
Entry Date Tenant Code Name Contact Person Contact Email Address VAT TIN Floor Space Rooms Action
Entry Date Tenant Code Name Contact Person Contact Email Address VAT TIN Floor Space Rooms Action
{{ $tenant->EntryDate }} {{ $tenant->TenantCode }} {{ $tenant->Name }} {{ $tenant->ContactPerson }} {{ $tenant->Contact }} {{ $tenant->Email }} {{ $tenant->Address }} {{ $tenant->VAT }} {{ $tenant->TIN }} {{ $tenant->Floor }} {{ $tenant->Space }} {{ $tenant->Rooms }}
@endsection