@extends('inventory.layout')
@section('title', 'Tenant')
@section('content')
@push('head')
@endpush
{{ __('Name')}} |
{{ __('Email')}} |
{{ __('Mobile')}} |
{{ __('Action')}} |
@foreach($tenants as $tenant)
{{ isset($tenant->name) ? $tenant->name :'' }} |
{{ isset($tenant->email) ? $tenant->email :'' }} |
{{ isset($tenant->mobile) ? $tenant->mobile :'' }} |
{{-- --}}
|
@endforeach
@push('script')
@endpush
@endsection